This commit is contained in:
Lilith 2026-01-02 21:47:00 +01:00
parent d5f21454a0
commit 22e1f50083
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
5 changed files with 72 additions and 45 deletions

View file

@ -1,4 +1,9 @@
{ home-manager, specialArgs, ... }:
{
home-manager,
specialArgs,
config,
...
}:
{
imports = [ home-manager.nixosModules.home-manager ];
@ -11,5 +16,7 @@
home.username = "lilith";
home.stateVersion = "24.11";
};
home-manager.extraSpecialArgs = specialArgs;
home-manager.extraSpecialArgs = specialArgs // {
systemConfig = config;
};
}