fix typo
This commit is contained in:
parent
f4aff45550
commit
e50a79208b
|
|
@ -8,7 +8,7 @@ moduleInputs @ {
|
|||
profile = "${username}@${hostName}";
|
||||
in {
|
||||
${profile} = let
|
||||
config = flakeLib.mkHomeManagerConfig moduleInputs;
|
||||
config = flakeLib.mkHomeManagerDefaults moduleInputs;
|
||||
in
|
||||
inputs.home-manager.lib.homeManagerConfiguration {
|
||||
inherit (config) extraSpecialArgs pkgs useGlobalPkgs useUserPackages;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ moduleInputs @ {
|
|||
users ? {},
|
||||
...
|
||||
}: let
|
||||
config = flakeLib.mkHomeManagerConfig moduleInputs;
|
||||
config = flakeLib.mkHomeManagerDefaults moduleInputs;
|
||||
in {
|
||||
inherit (config) extraSpecialArgs useGlobalPkgs useUserPackages;
|
||||
inherit users;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
moduleInputs @ {flakeLib, ...}: let
|
||||
config = flakeLib.mkHomeManagerConfig moduleInputs;
|
||||
config = flakeLib.mkHomeManagerDefaults moduleInputs;
|
||||
in {
|
||||
inherit (config) extraSpecialArgs pkgs useGlobalPkgs useUserPackages;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue