Reorganized flake.nix
This commit is contained in:
23
flake.nix
23
flake.nix
@@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user