modules/nix/core/home-manager: import lib' in extraSpecialArgs
This commit is contained in:
parent
e09569b921
commit
0fe6f67b20
1 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (config.local.systemVars) username;
|
inherit (config.local.systemVars) username;
|
||||||
|
lib' = import ../../../shared/lib inputs.nixpkgs.lib;
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
|
@ -16,7 +17,7 @@ in {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
|
|
||||||
extraSpecialArgs = {inherit inputs;};
|
extraSpecialArgs = {inherit inputs lib';};
|
||||||
sharedModules = [../../hm];
|
sharedModules = [../../hm];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue