From 814a1e8bc0b38ddc4751b0131f92440b2171bc84 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Tue, 17 Mar 2026 08:50:22 +0000 Subject: [PATCH] trying stylix --- Droidnix/README.org | 8 +++----- Droidnix/generated/out_of_tree/core/stylix.nix | 8 +++----- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/Droidnix/README.org b/Droidnix/README.org index 6e6164238..85fff596b 100644 --- a/Droidnix/README.org +++ b/Droidnix/README.org @@ -606,21 +606,19 @@ This sets the stylix implementation #+BEGIN_SRC nix :tangle generated/out_of_tree/core/stylix.nix :noweb tangle :mkdirp yes :eval never-html { config, pkgs, inputs, flakeRoot, ... }: +let + _ = builtins.trace ("Stylix enable = " + toString config.stylix.enable) null; +in { - # Import the Stylix NixOS module from the flake input imports = [ inputs.stylix.nixosModules.stylix ]; - # Minimal configuration stylix = { enable = true; base16Scheme = "${flakeRoot}/assets/system/theming/stylix/catppuccin-mocha.yaml"; polarity = "dark"; }; - - trace "Stylix enable = ${config.stylix.enable}" {} - } #+END_SRC diff --git a/Droidnix/generated/out_of_tree/core/stylix.nix b/Droidnix/generated/out_of_tree/core/stylix.nix index c57823877..e92854298 100644 --- a/Droidnix/generated/out_of_tree/core/stylix.nix +++ b/Droidnix/generated/out_of_tree/core/stylix.nix @@ -1,18 +1,16 @@ { config, pkgs, inputs, flakeRoot, ... }: +let + _ = builtins.trace ("Stylix enable = " + toString config.stylix.enable) null; +in { - # Import the Stylix NixOS module from the flake input imports = [ inputs.stylix.nixosModules.stylix ]; - # Minimal configuration stylix = { enable = true; base16Scheme = "${flakeRoot}/assets/system/theming/stylix/catppuccin-mocha.yaml"; polarity = "dark"; }; - - trace "Stylix enable = ${config.stylix.enable}" {} - }