diff options
author | ene <ene@sils.li> | 2023-02-21 12:07:13 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-21 12:07:13 +0100 |
commit | 50c6004159fe07e6f7a93f5cd33f045c48c073f2 (patch) | |
tree | 22b901e5b4429a260d700d6400815ef140fea500 | |
parent | Fix(hosts): Switch to correct host-name (diff) | |
download | nixos-config-50c6004159fe07e6f7a93f5cd33f045c48c073f2.tar.gz nixos-config-50c6004159fe07e6f7a93f5cd33f045c48c073f2.zip |
Fix(system): Fix typo in fs names
Diffstat (limited to '')
-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 403311f7..498cf0a9 100644 --- a/system/fileSystemLayouts/default.nix +++ b/system/fileSystemLayouts/default.nix @@ -48,7 +48,7 @@ in { fsType = "vfat"; }; #"${config.users.users.soispha.home}" = { # TODO this causes infinite recursion - "/home/sopipha" = { + "/home/soispha" = { device = "none"; fsType = "tmpfs"; # Can be stored on normal drive or on tmpfs as well options = ["defaults" "size=4G" "mode=755"]; |