diff options
author | ene <ene@sils.li> | 2023-02-21 17:51:39 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-21 17:51:39 +0100 |
commit | 007e4b706762ef925b058d15ff3e12bc8ccf4574 (patch) | |
tree | f2df3c16558eb20104927bb73f829426102c73c8 /system/fileSystemLayouts/default.nix | |
parent | Fix(home): permissions (hopefully) (diff) | |
download | nixos-config-007e4b706762ef925b058d15ff3e12bc8ccf4574.zip |
Fix(system): Remove extra tempfs
This was overmounting the /home directory, so generated user homes where deleted
Diffstat (limited to 'system/fileSystemLayouts/default.nix')
-rw-r--r-- | system/fileSystemLayouts/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/system/fileSystemLayouts/default.nix b/system/fileSystemLayouts/default.nix index cd6ec14b..d71ba7ae 100644 --- a/system/fileSystemLayouts/default.nix +++ b/system/fileSystemLayouts/default.nix @@ -48,11 +48,11 @@ in { fsType = "vfat"; }; #"${config.users.users.soispha.home}" = { # TODO this causes infinite recursion - "/home" = { - device = "none"; - fsType = "tmpfs"; # Can be stored on normal drive or on tmpfs as well - options = ["defaults" "size=4G" "mode=755"]; - }; + # "/home" = { + # device = "none"; + # fsType = "tmpfs"; # Can be stored on normal drive or on tmpfs as well + # options = ["defaults" "size=4G" "mode=755"]; + # }; }; swapDevices = []; }; |