diff options
author | Soispha <soispha@vhack.eu> | 2023-07-02 14:34:56 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-10 16:44:27 +0200 |
commit | 3cd0c56caa308ff6b399d074f1fc903d31ece77b (patch) | |
tree | 082c019d46b070d82397fcb402b89242a2d96c89 | |
parent | Fix(bootstrap): Specify experimental-features before arguments to disko (diff) | |
download | nixos-config-3cd0c56caa308ff6b399d074f1fc903d31ece77b.tar.gz nixos-config-3cd0c56caa308ff6b399d074f1fc903d31ece77b.zip |
Fix(system/disks): Typo in snapshots
-rw-r--r-- | system/disks/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/disks/default.nix b/system/disks/default.nix index 7e915012..3e4abefe 100644 --- a/system/disks/default.nix +++ b/system/disks/default.nix @@ -67,7 +67,7 @@ in { mountOptions = defaultMountOptions; }; "persistent-storage@snapshots" = { - mountpoint = "/srv/.snaphots"; # TODO does this work? + mountpoint = "/srv/.snapshots"; # TODO does this work? mountOptions = defaultMountOptions; }; "swap" = { |