diff options
author | ene <ene@sils.li> | 2023-02-19 13:36:50 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-19 13:36:50 +0100 |
commit | 0580af7859a5f46fb39e6da28fb21fa086e22610 (patch) | |
tree | 4b963bcb6ab8e14c4f2232953f2f0d8402ef22f6 /system/fileSystemLayouts | |
parent | Feat(bootstrap): Add a Script to make nix run with bootstrap viable (diff) | |
download | nixos-config-0580af7859a5f46fb39e6da28fb21fa086e22610.tar.gz nixos-config-0580af7859a5f46fb39e6da28fb21fa086e22610.zip |
Fix(system): Fix typos
Diffstat (limited to 'system/fileSystemLayouts')
-rw-r--r-- | system/fileSystemLayouts/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/fileSystemLayouts/default.nix b/system/fileSystemLayouts/default.nix index 64ea4616..e4062ffe 100644 --- a/system/fileSystemLayouts/default.nix +++ b/system/fileSystemLayouts/default.nix @@ -41,7 +41,7 @@ in { device = cfg.mainDisk; fsType = "btrfs"; neededForBoot = true; - options = ["subvol=perstitend-storage"] ++ defaultMountOptions; + options = ["subvol=persistent-storage"] ++ defaultMountOptions; }; "/boot" = { device = cfg.efiDisk; |