Tried fixing stylix

This commit is contained in:
2023-12-12 16:34:46 -04:00
parent 9d6220b6ad
commit f0fb1325c7
3 changed files with 27 additions and 20 deletions

View File

@@ -4,7 +4,7 @@
inputs = {
# System
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
nixos-hardware.url = "github:NixOS/nixos-hardware";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
@@ -15,7 +15,7 @@
# Theming
stylix.url = "github:danth/stylix";
};
outputs = inputs@{ self, nixpkgs, home-manager, ... }:
outputs = inputs@{ self, nixpkgs, stylix, home-manager, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
@@ -26,6 +26,11 @@
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
# Theme
stylix.nixosModules.stylix
./themes/targets/all.nix
./themes/sandstone-forest
./hosts/Equinox
home-manager.nixosModules.home-manager
{
@@ -34,12 +39,9 @@
home-manager.extraSpecialArgs = inputs;
home-manager.users.panotaka = {
imports = [ ./home ./home/shell ./home/desktop ./themes/targets/all.nix ./themes/sandstone-forest ];
imports = [ ./home ./home/shell ./home/desktop ];
};
}
inputs.stylix.nixosModules.stylix
./themes/targets/all.nix
./themes/sandstone-forest
];
};
@@ -58,7 +60,7 @@
imports = [ ./home ./home/shell ./home/desktop ];
};
}
inputs.stylix.nixosModules.stylix
stylix.nixosModules.stylix
./themes/targets/all.nix
./themes/spaceduck
];