From: Preston Pan Date: Sat, 31 Jan 2026 05:56:11 +0000 (-0800) Subject: fix continuity X-Git-Url: https://ret2pop.net/gitweb/?a=commitdiff_plain;h=9e826d9c2bad4a7ccf183257118be37083f26782;p=monorepo.git fix continuity --- diff --git a/config/nix.org b/config/nix.org index e2b2651..11f6dc7 100644 --- a/config/nix.org +++ b/config/nix.org @@ -1219,6 +1219,9 @@ This is my impermanence profile, which removes all files on reboot except for th "/persistent" = { neededForBoot = true; }; + "/home" = { + neededForBoot = true; + }; } else {}; environment.persistence."/persistent" = { @@ -3815,7 +3818,6 @@ This is pretty understandable, if you understand all the above. fileSystem = "btrfs"; }; }; - networking.networkmanager.wifi.backend = "iwd"; }; } #+end_src diff --git a/nix/modules/impermanence.nix b/nix/modules/impermanence.nix index 5a74f6e..36b2f7e 100644 --- a/nix/modules/impermanence.nix +++ b/nix/modules/impermanence.nix @@ -42,6 +42,9 @@ "/persistent" = { neededForBoot = true; }; + "/home" = { + neededForBoot = true; + }; } else {}; environment.persistence."/persistent" = { diff --git a/nix/systems/continuity/default.nix b/nix/systems/continuity/default.nix index c156055..9433117 100644 --- a/nix/systems/continuity/default.nix +++ b/nix/systems/continuity/default.nix @@ -14,6 +14,5 @@ fileSystem = "btrfs"; }; }; - networking.networkmanager.wifi.backend = "iwd"; }; }