aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-02-07 21:39:16 -0800
committerCaroline Larimore <caroline@larimo.re>2025-04-14 18:58:48 -0700
commit306d89a86f3637da0b043d54a0ee1e0a8a10ed0c (patch)
tree5002b95c57fc636ebf701337a085e8c9e0f159cc /snowfall/modules
parent64b9ba20a75ceacd2ac0af0028bf40fa73a28ab5 (diff)
migration: disable allowOther on secure home persist
Diffstat (limited to 'snowfall/modules')
-rw-r--r--snowfall/modules/home/impermanence/default.nix3
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;
};
};
}