diff options
-rw-r--r-- | system/fileSystemLayouts/default.nix | 11 |
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 = []; }; |