trying stylix

This commit is contained in:
2026-03-17 08:50:22 +00:00
parent c865ffa5c4
commit 814a1e8bc0
2 changed files with 6 additions and 10 deletions
+3 -5
View File
@@ -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
@@ -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}" {}
}