diff options
Diffstat (limited to 'system/fileSystemLayouts')
-rw-r--r-- | system/fileSystemLayouts/default.nix | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/system/fileSystemLayouts/default.nix b/system/fileSystemLayouts/default.nix index e4062ffe..cdc59b4e 100644 --- a/system/fileSystemLayouts/default.nix +++ b/system/fileSystemLayouts/default.nix @@ -47,13 +47,12 @@ in { device = cfg.efiDisk; fsType = "vfat"; }; - - # 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"]; - # }; + fileSystems."${config.users.users.soispha.home}" = { + # fileSystems."/home/sopipha" = { + device = "none"; + fsType = "tmpfs"; # Can be stored on normal drive or on tmpfs as well + options = ["defaults" "size=4G" "mode=755"]; + }; }; swapDevices = []; }; |