home: pass hozen arg to home-manager

This commit is contained in:
ooks-io 2024-11-09 22:50:34 +11:00
parent 5688d97e0c
commit e490c6be8e

View file

@ -5,6 +5,7 @@
self', self',
lib, lib,
config, config,
hozen,
... ...
}: let }: let
inherit (lib) mkIf; inherit (lib) mkIf;
@ -16,7 +17,7 @@ in {
useUserPackages = true; useUserPackages = true;
backupFileExtension = "hm.old"; backupFileExtension = "hm.old";
verbose = true; verbose = true;
extraSpecialArgs = {inherit inputs inputs' self self';}; extraSpecialArgs = {inherit hozen inputs inputs' self self';};
users.${admin.name} = { users.${admin.name} = {
imports = ["${self}/modules/home/base"]; imports = ["${self}/modules/home/base"];
}; };