about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-11 12:18:15 +0100
committerene <ene@sils.li>2023-02-11 12:18:15 +0100
commitb5bd37ce2afb7c52df03a6481ada9b9d387d3943 (patch)
treede58ec1cf9ea80f1787f2fa26a7a21d7c92891d9
parentFeat: Switch to default.nix (diff)
downloadnixos-config-b5bd37ce2afb7c52df03a6481ada9b9d387d3943.tar.gz
nixos-config-b5bd37ce2afb7c52df03a6481ada9b9d387d3943.zip
Fix: Comment infinite recursion causing lines
I will probably use a module for persistent file systems, so commenting
this seems the best option for now.
Diffstat (limited to '')
-rw-r--r--system/fileSystemLayouts/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/system/fileSystemLayouts/default.nix b/system/fileSystemLayouts/default.nix
index bdbad630..9a9b8add 100644
--- a/system/fileSystemLayouts/default.nix
+++ b/system/fileSystemLayouts/default.nix
@@ -47,11 +47,12 @@ in {
         options = ["bind"];
       };
 
-      "${config.users.users.soispha.home}/.config" = {
-        device = "none";
-        fsType = "tmpfs";
-        options = ["defaults" "size=1G" "mode=755"];
-      };
+# This results in infinite recursion, don't ask my why
+#      "${config.users.users.soispha.home}/.config" = {
+#        device = "none";
+#        fsType = "tmpfs";
+#        options = ["defaults" "size=1G" "mode=755"];
+#      };
     };
     swapDevices = [];
   };