Reorganized flake.nix

This commit is contained in:
panotaka
2023-12-22 22:28:10 -04:00
parent e1a46e38fa
commit 31c09af227
2 changed files with 19 additions and 6 deletions

View File

@@ -29,18 +29,24 @@
in {
nixosConfigurations = {
Equinox = nixpkgs.lib.nixosSystem {
# System
system = "x86_64-linux";
specialArgs = {
inherit inputs;
inherit system;
};
# Modules
modules = [
# Theme
# Theme Modules
stylix.nixosModules.stylix
./themes/targets/all.nix
./themes/sandstone-forest
# Host Module
./hosts/Equinox
# Home Manager Modules
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
@@ -49,7 +55,6 @@
inherit inputs;
inherit system;
};
home-manager.users.panotaka = {
imports = [./home ./home/shell ./home/desktop];
};
@@ -58,13 +63,24 @@
};
Blackbird = nixpkgs.lib.nixosSystem {
# System
system = "x86_64-linux";
specialArgs = {
inherit inputs;
inherit system;
};
# Modules
modules = [
# Theme Modules
stylix.nixosModules.stylix
./themes/targets/all.nix
./themes/spaceduck
# Host Module
./hosts/Blackbird
# Home Manager Modules
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
@@ -78,9 +94,6 @@
imports = [./home ./home/shell ./home/desktop];
};
}
stylix.nixosModules.stylix
./themes/targets/all.nix
./themes/spaceduck
];
};
};