diff options
author | ene <ene@sils.li> | 2023-02-11 12:18:15 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-11 12:18:15 +0100 |
commit | b5bd37ce2afb7c52df03a6481ada9b9d387d3943 (patch) | |
tree | de58ec1cf9ea80f1787f2fa26a7a21d7c92891d9 | |
parent | Feat: Switch to default.nix (diff) | |
download | nixos-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.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 = []; }; |