From 75ef8ac0234df9af465df556413c557c0544df85 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Thu, 22 Jan 2026 11:28:36 -0800 Subject: flake: update --- modules/nixos/system/impermanence/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'modules/nixos/system/impermanence/default.nix') 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"; }; }; }; -- cgit v1.2.3