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 08:02:13 +0100
committerene <ene@sils.li>2023-02-21 08:02:13 +0100
commit120cfdd002a0bf8fbf4a16e13fa0d32b111d7682 (patch)
tree472c9667856ab8f0d33c6e30efd0a59713c41d96 /system/fileSystemLayouts/default.nix
parentFix(impermanence): Rework the imports (diff)
downloadnixos-config-120cfdd002a0bf8fbf4a16e13fa0d32b111d7682.zip
Fix(filesystem): Hardcode the user home to prevent recusion
Diffstat (limited to '')
-rw-r--r--system/fileSystemLayouts/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/fileSystemLayouts/default.nix b/system/fileSystemLayouts/default.nix
index cdc59b4e..403311f7 100644
--- a/system/fileSystemLayouts/default.nix
+++ b/system/fileSystemLayouts/default.nix
@@ -47,8 +47,8 @@ in {
         device = cfg.efiDisk;
         fsType = "vfat";
       };
-      fileSystems."${config.users.users.soispha.home}" = {
-        # fileSystems."/home/sopipha" = {
+      #"${config.users.users.soispha.home}" = { # TODO this causes infinite recursion
+      "/home/sopipha" = {
         device = "none";
         fsType = "tmpfs"; # Can be stored on normal drive or on tmpfs as well
         options = ["defaults" "size=4G" "mode=755"];