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/nixos/system/impermanence/default.nix | |
| parent | 9bc8d55bdb68e51a1a9432bd656c191232ee0c7e (diff) | |
flake: update
Diffstat (limited to 'modules/nixos/system/impermanence/default.nix')
| -rw-r--r-- | modules/nixos/system/impermanence/default.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/modules/nixos/system/impermanence/default.nix b/modules/nixos/system/impermanence/default.nix index b82579b..ecbf720 100644 --- a/modules/nixos/system/impermanence/default.nix +++ b/modules/nixos/system/impermanence/default.nix @@ -11,18 +11,24 @@ in { default = "/persist/system"; }; - #TODO: multi-user support home = { enable = mkEnableOption "home impermanence"; + # in a completely undocumented and non-overridable change (yes im a little upset), + # home impermanence moved from the location provided to the location provided + $HOME. + # forcing me to move all my shit is NOT cool. dont remove user choice for no reason. + # especially not in a breaking change, and ESPECIALLY not an *UNDOCUMENTED ONE!* + + # anyways, now home is at just /persist while system is in a subdir. because that + # makes sense. actual persist path = /persist/home/c location = mkOption { type = str; - default = "/persist/home"; + default = "/persist"; }; secure.location = mkOption { type = str; - default = "/persist/secure/home"; + default = "/persist/secure"; }; }; }; |