diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-24 14:46:23 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-24 14:46:23 +0200 |
commit | 30fe63591613b4407a58020395e1bc84a9552ddc (patch) | |
tree | ccb00678d2e52173af178d58a1b85d1c448ea64d /modules/by-name | |
parent | refactor(modules/impermanence): Move all optional dirs to their modules (diff) | |
download | nixos-config-30fe63591613b4407a58020395e1bc84a9552ddc.tar.gz nixos-config-30fe63591613b4407a58020395e1bc84a9552ddc.zip |
feat(modules/legacy/impermanence): Merge with the system config
Using the home-manager module uses a non-root fuse bindfs, which is obviously slower than simply mounting the directories via bind mounts. Besides, mounting them via the bindfs fuse mount, results in a potential DOS, when this mount processes runs out of open file descriptors (leading to the issue described in the `nix -> lix` commit.)
Diffstat (limited to 'modules/by-name')
-rw-r--r-- | modules/by-name/im/impermanence/module.nix | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/modules/by-name/im/impermanence/module.nix b/modules/by-name/im/impermanence/module.nix index 513a91b7..140e0754 100644 --- a/modules/by-name/im/impermanence/module.nix +++ b/modules/by-name/im/impermanence/module.nix @@ -15,13 +15,32 @@ in { }; config = lib.mkIf cfg.enable { - # needed for the hm impermanence config - programs.fuse.userAllowOther = true; - environment.persistence = { "/srv" = { hideMounts = true; inherit (cfg) directories; + + users.soispha = { + directories = [ + ".local/share" + + ".local/state/nvim" + ".local/state/mpv" + ".local/state/wireplumber" + + ".config/Signal" + ".config/Element" + ".config/iamb/profiles" + + ".cache" + ".mozilla" + + "media" + "repos" + "school" + ]; + }; + files = [ "/etc/machine-id" ]; |