mirror of
https://github.com/nix-community/home-manager
synced 2024-12-26 11:49:47 +01:00
parent
5f34ca8c64
commit
915c58a928
1 changed files with 4 additions and 1 deletions
|
@ -80,7 +80,10 @@
|
||||||
configuration = { ... }: {
|
configuration = { ... }: {
|
||||||
imports = modules
|
imports = modules
|
||||||
++ [{ programs.home-manager.path = toString ./.; }];
|
++ [{ programs.home-manager.path = toString ./.; }];
|
||||||
nixpkgs = { inherit (pkgs) config overlays; };
|
nixpkgs = {
|
||||||
|
config = nixpkgs.lib.mkDefault pkgs.config;
|
||||||
|
inherit (pkgs) overlays;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue