From 626796b6261470ac03f5cb9d0c12d0f695125295 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Mon, 16 Mar 2026 22:56:33 +0000 Subject: [PATCH] trying stylix --- Droidnix/README.org | 7 ++++++- Droidnix/flake.nix | 2 +- Droidnix/generated/out_of_tree/core/nix.nix | 5 +++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Droidnix/README.org b/Droidnix/README.org index 0630e8b00..5dd6ee4fe 100644 --- a/Droidnix/README.org +++ b/Droidnix/README.org @@ -207,7 +207,7 @@ outputs = # Import machine-specific configurations ./generated/out_of_tree/machines/traveldroid/top.nix # Catppuccin theme module - # catppuccin.nixosModules.catppuccin + # catppuccin.nixosModules.catppuccin # Anchoring all the other nixes ./generated/top.nix # Home Manager module @@ -656,6 +656,11 @@ You'll notice the color values in multiple places outside this as well. nix.settings = { extra-experimental-features = [ "nix-command" "flakes" ]; }; + + # Add Stylix to system packages so activation scripts are available + environment.systemPackages = with pkgs; [ + stylix + ]; } #+END_SRC diff --git a/Droidnix/flake.nix b/Droidnix/flake.nix index 96e4fb615..9baea6c70 100644 --- a/Droidnix/flake.nix +++ b/Droidnix/flake.nix @@ -63,7 +63,7 @@ outputs = # Import machine-specific configurations ./generated/out_of_tree/machines/traveldroid/top.nix # Catppuccin theme module - # catppuccin.nixosModules.catppuccin + # catppuccin.nixosModules.catppuccin # Anchoring all the other nixes ./generated/top.nix # Home Manager module diff --git a/Droidnix/generated/out_of_tree/core/nix.nix b/Droidnix/generated/out_of_tree/core/nix.nix index bb28420bf..5c4f119e2 100644 --- a/Droidnix/generated/out_of_tree/core/nix.nix +++ b/Droidnix/generated/out_of_tree/core/nix.nix @@ -3,4 +3,9 @@ nix.settings = { extra-experimental-features = [ "nix-command" "flakes" ]; }; + + # Add Stylix to system packages so activation scripts are available + environment.systemPackages = with pkgs; [ + stylix + ]; }