From b5bd37ce2afb7c52df03a6481ada9b9d387d3943 Mon Sep 17 00:00:00 2001 From: ene Date: Sat, 11 Feb 2023 12:18:15 +0100 Subject: 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. --- system/fileSystemLayouts/default.nix | 11 ++++++----- 1 file 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 = []; }; -- cgit 1.4.1