move home-manager into system_profiles
This commit is contained in:
parent
5ad19562e6
commit
d36f14b847
4 changed files with 11 additions and 6 deletions
10
system_profiles/components/home-manager.nix
Normal file
10
system_profiles/components/home-manager.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{inArgs, pkgs, ...}: {
|
||||
imports = [ inArgs.home-manager.nixosModules.home-manager ];
|
||||
|
||||
environment.systemPackages = [ pkgs.home-manager ];
|
||||
|
||||
home-manager = {
|
||||
useUserPackages = true;
|
||||
useGlobalPkgs = true;
|
||||
};
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./components/home-manager.nix
|
||||
./components/nix-defaults.nix
|
||||
#./components/nixpkgs-ng.nix
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue