diff options
| author | Caroline Larimore <caroline@larimo.re> | 2026-01-22 11:28:36 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2026-01-22 11:28:36 -0800 |
| commit | 75ef8ac0234df9af465df556413c557c0544df85 (patch) | |
| tree | d63f606f81a887821b2bc90d41a669c8257eb520 /modules/home | |
| parent | 9bc8d55bdb68e51a1a9432bd656c191232ee0c7e (diff) | |
flake: update
Diffstat (limited to 'modules/home')
| -rw-r--r-- | modules/home/apps/steam/default.nix | 1 | ||||
| -rw-r--r-- | modules/home/impermanence/default.nix | 8 |
2 files changed, 0 insertions, 9 deletions
diff --git a/modules/home/apps/steam/default.nix b/modules/home/apps/steam/default.nix index 9148b9d..0082033 100644 --- a/modules/home/apps/steam/default.nix +++ b/modules/home/apps/steam/default.nix @@ -17,7 +17,6 @@ in { home.persistence.${impermanence.location} = { directories = [{ directory = ".local/share/Steam"; - method = "symlink"; }]; }; diff --git a/modules/home/impermanence/default.nix b/modules/home/impermanence/default.nix index b4b4630..540a6b5 100644 --- a/modules/home/impermanence/default.nix +++ b/modules/home/impermanence/default.nix @@ -4,10 +4,6 @@ with lib; with lib.${namespace}; let cfg = config.${namespace}.impermanence; os = osConfig.${namespace}.system.impermanence.home; in { - imports = [ - inputs.impermanence.nixosModules.home-manager.impermanence - ]; - options.${namespace}.impermanence = with types; { skeleton = mkOption { type = bool; @@ -26,8 +22,6 @@ in { home.persistence.${cfg.location} = { enable = cfg.enable; - allowOther = true; - directories = mkIf cfg.skeleton [ ".local/share/applications" ".local/bin" @@ -45,8 +39,6 @@ in { home.persistence.${cfg.secure.location} = { enable = cfg.enable; - allowOther = false; - directories = mkIf cfg.skeleton [ "Secure" ]; |