Add plasma-manager module and configuration

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2024-04-28 22:35:56 +03:00
parent e792137d5b
commit d3773e4e4f
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D
5 changed files with 229 additions and 0 deletions

View file

@ -8,11 +8,18 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "github:pjones/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
};
outputs = {
nixpkgs,
home-manager,
plasma-manager,
...
}: let
system = "x86_64-linux";
@ -22,6 +29,9 @@
inherit pkgs;
modules = [
./home.nix
./plasma/plasma.nix
plasma-manager.homeManagerModules.plasma-manager
];
};
};