mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
home-manager: re-enable gcroot handling for NixOS module
It was a bit too ambitious to also remove production of the gcroot, we need it to keep track of the currently active Home Manager configuration. Fixes #7583
This commit is contained in:
parent
0630790b31
commit
bd82507edd
2 changed files with 5 additions and 12 deletions
|
|
@ -82,16 +82,15 @@
|
|||
|
||||
logout_alice()
|
||||
|
||||
with subtest("no GC root and profile"):
|
||||
# There should be no GC root and Home Manager profile since we are not
|
||||
with subtest("no profile management"):
|
||||
# There should be no Home Manager profile since we are not
|
||||
# using legacy profile management.
|
||||
hmState = "/home/alice/.local/state/home-manager"
|
||||
machine.succeed(f"test ! -e {hmState}")
|
||||
|
||||
hmProfile = "/home/alice/.local/state/nix/profiles/home-manager"
|
||||
machine.succeed(f"test ! -e {hmProfile}")
|
||||
|
||||
# There should be a gcroot, however since we want to keep track of which
|
||||
# generation is currently enabled.
|
||||
hmGcroot = "/home/alice/.local/state/home-manager/gcroots/current-home"
|
||||
machine.succeed(f"test ! -e {hmGcroot}")
|
||||
machine.succeed(f"test -e {hmGcroot}")
|
||||
'';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue