about summary refs log tree commit diff stats
path: root/system/fileSystemLayouts/default.nix
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-21 15:56:38 +0100
committerene <ene@sils.li>2023-02-21 15:56:38 +0100
commit8f5b5ef7d215fff0daa99b020e57c84b0031b21d (patch)
treec5ffb1ae752c8da9f43ef4fd1ae10c06fdd8a7e1 /system/fileSystemLayouts/default.nix
parentFix(hosts): Further UUID updates for lahmu (diff)
downloadnixos-config-8f5b5ef7d215fff0daa99b020e57c84b0031b21d.tar.gz
nixos-config-8f5b5ef7d215fff0daa99b020e57c84b0031b21d.zip
Fix(system): Try to fix permissions on mount point
Diffstat (limited to '')
-rw-r--r--system/fileSystemLayouts/default.nix2
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"];