adding a plasma.nix to potentially config plasma

This commit is contained in:
Chris Cochrun 2024-09-04 10:31:46 -05:00
parent 8c0d6fefd3
commit 4c1e79088c
3 changed files with 290 additions and 0 deletions

View file

@ -9,6 +9,11 @@
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "githube:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
stylix = {
url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs";
@ -69,6 +74,7 @@
outputs = { nixpkgs,
nixpkgs-stable,
home-manager,
plasma-manager,
# hyprland,
quickemu,
nixos-hardware,
@ -131,6 +137,7 @@
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit ags; };
home-manager.users.chris = import ./home/home.nix;
home-manager.sharedModules = [ plasma-manager.homeManagerModules.plasma-manager ];
}
];
};