about summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/fileSystemLayouts/default.nix10
-rw-r--r--system/users/default.nix14
2 files changed, 12 insertions, 12 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 = [];
   };
diff --git a/system/users/default.nix b/system/users/default.nix
index 8efece26..e96e2f37 100644
--- a/system/users/default.nix
+++ b/system/users/default.nix
@@ -29,12 +29,12 @@ in {
         uid = 1000;
       };
     };
-    system.activationScripts.home_permissions =
-      pkgs.lib.stringAfter ["users"]
-      ''
-        mkdir /home/soispha
-        chmod 700 /home/soispha
-        chown -hR soispha:users /home/soispha
-      '';
+#    system.activationScripts.home_permissions =
+#      pkgs.lib.stringAfter ["users"]
+#      ''
+#        mkdir /home/soispha
+#        chmod 700 /home/soispha
+#        chown -hR soispha:users /home/soispha
+#      '';
   };
 }