Fix home-manager module imports
This commit is contained in:
parent
698b862b74
commit
3fcf1952b7
2 changed files with 10 additions and 5 deletions
12
flake.nix
12
flake.nix
|
@ -76,12 +76,14 @@
|
|||
homeConfigurations = {
|
||||
"tristand" = inputs.home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
inherit inputs;
|
||||
|
||||
modules = [
|
||||
./home.nix
|
||||
inputs.plasma-manager.homeManagerModules.plasma-manager
|
||||
inputs.nix-index-database.hmModules.nix-index
|
||||
inputs.nur.hmModules.nur
|
||||
{
|
||||
nixpkgs.pkgs = customPkgs;
|
||||
_module.args.inputs = inputs;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
@ -105,6 +107,12 @@
|
|||
nixpkgs.pkgs = customPkgs;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.sharedModules = [
|
||||
inputs.plasma-manager.homeManagerModules.plasma-manager
|
||||
inputs.nix-index-database.hmModules.nix-index
|
||||
inputs.nur.hmModules.nur
|
||||
];
|
||||
|
||||
hardware.tuxedo-control-center.enable = true;
|
||||
hardware.tuxedo-control-center.package = inputs.tuxedo-nixos.packages.x86_64-linux.default;
|
||||
}
|
||||
|
|
3
home.nix
3
home.nix
|
@ -11,9 +11,6 @@
|
|||
wallpaperPath = "${wallpaper}/share/wallpapers/nixos-wallpaper.png";
|
||||
in {
|
||||
imports = [
|
||||
inputs.plasma-manager.homeManagerModules.plasma-manager
|
||||
inputs.nix-index-database.hmModules.nix-index
|
||||
inputs.nur.hmModules.nur
|
||||
./plasma.nix
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue