diff options
author | ene <ene@sils.li> | 2023-02-21 15:56:38 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-21 15:56:38 +0100 |
commit | 8f5b5ef7d215fff0daa99b020e57c84b0031b21d (patch) | |
tree | c5ffb1ae752c8da9f43ef4fd1ae10c06fdd8a7e1 /system/fileSystemLayouts/default.nix | |
parent | Fix(hosts): Further UUID updates for lahmu (diff) | |
download | nixos-config-8f5b5ef7d215fff0daa99b020e57c84b0031b21d.tar.gz nixos-config-8f5b5ef7d215fff0daa99b020e57c84b0031b21d.zip |
Fix(system): Try to fix permissions on mount point
Diffstat (limited to 'system/fileSystemLayouts/default.nix')
-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 498cf0a9..cd6ec14b 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/soispha" = { + "/home" = { device = "none"; fsType = "tmpfs"; # Can be stored on normal drive or on tmpfs as well options = ["defaults" "size=4G" "mode=755"]; |