diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/disks/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/system/disks/default.nix b/system/disks/default.nix index 6bdde2fe..171ee292 100644 --- a/system/disks/default.nix +++ b/system/disks/default.nix @@ -66,6 +66,10 @@ in { mountpoint = "/srv"; mountOptions = defaultMountOptions; }; + "persistent-storage@snapshots" = { + mountpoint = "/srv/.snaphots"; # TODO does this work? + mountOptions = defaultMountOptions; + }; "swap" = { mountpoint = "/swap"; mountOptions = defaultMountOptions; |