diff options
author | Soispha <soispha@vhack.eu> | 2023-07-10 17:07:58 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-10 17:07:58 +0200 |
commit | 411eb38eb1cbe960916e50fa716343aeadbc9895 (patch) | |
tree | a0b7a62e31060968ea1df5fff7e8e011fee10a4f /system | |
parent | Build(flake): Update (diff) | |
download | nixos-config-411eb38eb1cbe960916e50fa716343aeadbc9895.tar.gz nixos-config-411eb38eb1cbe960916e50fa716343aeadbc9895.zip |
Docs(system/disks): Remove checked TODO comments
Diffstat (limited to '')
-rw-r--r-- | system/disks/default.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/system/disks/default.nix b/system/disks/default.nix index 3e4abefe..f2884108 100644 --- a/system/disks/default.nix +++ b/system/disks/default.nix @@ -67,7 +67,7 @@ in { mountOptions = defaultMountOptions; }; "persistent-storage@snapshots" = { - mountpoint = "/srv/.snapshots"; # TODO does this work? + mountpoint = "/srv/.snapshots"; mountOptions = defaultMountOptions; }; "swap" = { @@ -82,7 +82,6 @@ in { type = "EF00"; size = "512M"; name = "boot"; - #bootable = true; # TODO is this needed? content = { type = "filesystem"; format = "vfat"; |