diff options
author | ene <ene@sils.li> | 2023-02-21 08:02:13 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-21 08:02:13 +0100 |
commit | 120cfdd002a0bf8fbf4a16e13fa0d32b111d7682 (patch) | |
tree | 472c9667856ab8f0d33c6e30efd0a59713c41d96 /system/fileSystemLayouts/default.nix | |
parent | Fix(impermanence): Rework the imports (diff) | |
download | nixos-config-120cfdd002a0bf8fbf4a16e13fa0d32b111d7682.zip |
Fix(filesystem): Hardcode the user home to prevent recusion
Diffstat (limited to '')
-rw-r--r-- | system/fileSystemLayouts/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/fileSystemLayouts/default.nix b/system/fileSystemLayouts/default.nix index cdc59b4e..403311f7 100644 --- a/system/fileSystemLayouts/default.nix +++ b/system/fileSystemLayouts/default.nix @@ -47,8 +47,8 @@ in { device = cfg.efiDisk; fsType = "vfat"; }; - fileSystems."${config.users.users.soispha.home}" = { - # fileSystems."/home/sopipha" = { + #"${config.users.users.soispha.home}" = { # TODO this causes infinite recursion + "/home/sopipha" = { device = "none"; fsType = "tmpfs"; # Can be stored on normal drive or on tmpfs as well options = ["defaults" "size=4G" "mode=755"]; |