diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-07 21:39:16 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:48 -0700 |
| commit | 306d89a86f3637da0b043d54a0ee1e0a8a10ed0c (patch) | |
| tree | 5002b95c57fc636ebf701337a085e8c9e0f159cc /snowfall/modules/home | |
| parent | 64b9ba20a75ceacd2ac0af0028bf40fa73a28ab5 (diff) | |
migration: disable allowOther on secure home persist
Diffstat (limited to 'snowfall/modules/home')
| -rw-r--r-- | snowfall/modules/home/impermanence/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/snowfall/modules/home/impermanence/default.nix b/snowfall/modules/home/impermanence/default.nix index 1b92bca..c1d1a2d 100644 --- a/snowfall/modules/home/impermanence/default.nix +++ b/snowfall/modules/home/impermanence/default.nix @@ -7,7 +7,7 @@ in { imports = [ inputs.impermanence.nixosModules.home-manager.impermanence ]; - + options.${namespace}.impermanence = with types; { skeleton = mkOption { type = bool; @@ -45,6 +45,7 @@ in { home.persistence.${cfg.secure.location} = { enable = builtins.elem host hosts; + allowOther = false; }; }; } |