Added Bellerophon
This commit is contained in:
46
flake.nix
46
flake.nix
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user