trying stylix

This commit is contained in:
2026-03-16 22:31:35 +00:00
parent 3be7dbc5bb
commit 03945c0315
3 changed files with 6 additions and 2 deletions
+4 -1
View File
@@ -198,6 +198,8 @@ outputs =
lib.nixosSystem { lib.nixosSystem {
inherit system; inherit system;
modules = [ modules = [
# Importing nix.nix
./generated/out_of_tree/core/nix.nix
# theming engine # theming engine
stylix.nixosModules.stylix stylix.nixosModules.stylix
# Importing theme file # Importing theme file
@@ -346,7 +348,6 @@ This is the top of the machine hierarchy
./audio.nix ./audio.nix
./xdg.nix ./xdg.nix
./networking.nix ./networking.nix
./nix.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
]; ];
} }
@@ -590,6 +591,8 @@ This sets audiosystem for this machine
} }
#+END_SRC #+END_SRC
** =generated/out_of_tree/core/theme.nix= ** =generated/out_of_tree/core/theme.nix=
I use the [[https://catppuccin.com/][Catppuccin]] almost everywhere. The nix module integrates almost automatically everywhere (except gtk). I use the [[https://catppuccin.com/][Catppuccin]] almost everywhere. The nix module integrates almost automatically everywhere (except gtk).
You'll notice the color values in multiple places outside this as well. You'll notice the color values in multiple places outside this as well.
+2
View File
@@ -54,6 +54,8 @@ outputs =
lib.nixosSystem { lib.nixosSystem {
inherit system; inherit system;
modules = [ modules = [
# Importing nix.nix
./generated/out_of_tree/core/nix.nix
# theming engine # theming engine
stylix.nixosModules.stylix stylix.nixosModules.stylix
# Importing theme file # Importing theme file
@@ -17,7 +17,6 @@
./audio.nix ./audio.nix
./xdg.nix ./xdg.nix
./networking.nix ./networking.nix
./nix.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
]; ];
} }