Added Bellerophon

This commit is contained in:
2024-10-22 22:37:01 -03:00
parent 473d4916e7
commit 62ea4fed01
5 changed files with 201 additions and 9 deletions

View File

@@ -116,6 +116,52 @@
];
};
Bellerophon = nixpkgs.lib.nixosSystem {
# System
system = "x86_64-linux";
specialArgs = {
inherit inputs;
inherit system;
};
# Modules
modules = [
#kde2nix Module
#inputs.kde2nix.nixosModules.default
# NUR Modules
nur.nixosModules.nur
# Theme Modules
stylix.nixosModules.stylix
./themes/targets/all.nix
./themes/dracula
# Host Module
./hosts/Bellerophon
# Home Manager Modules
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = {
inherit inputs;
inherit system;
};
home-manager.users.panotaka = {
imports = [
nur.hmModules.nur
./home
./home/shell
./home/applications
./home/desktops/kde
];
};
}
];
};
Blackbird = nixpkgs.lib.nixosSystem {
# System
system = "x86_64-linux";