diff options
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" ]; |