From 284d74cd5fa23befd711bccb805cda250461c082 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Tue, 17 Mar 2026 08:39:15 +0000 Subject: [PATCH] trying stylix --- Droidnix/README.org | 10 +++++++--- Droidnix/generated/out_of_tree/core/stylix.nix | 12 ++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Droidnix/README.org b/Droidnix/README.org index 747c2e270..e0098c428 100644 --- a/Droidnix/README.org +++ b/Droidnix/README.org @@ -604,10 +604,14 @@ This sets the XDG implementation ** =generated/out_of_tree/core/stylix.nix= 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, flakeRoot, ... }: +{ config, pkgs, inputs, flakeRoot, ... }: + { - # Enable Stylix at system level - stylix.nixosModules.stylix; + # Import the Stylix NixOS module from the flake input + imports = [ + inputs.stylix.nixosModules.stylix + ]; + # Minimal configuration stylix = { enable = true; diff --git a/Droidnix/generated/out_of_tree/core/stylix.nix b/Droidnix/generated/out_of_tree/core/stylix.nix index fa745b732..ddf8b8689 100644 --- a/Droidnix/generated/out_of_tree/core/stylix.nix +++ b/Droidnix/generated/out_of_tree/core/stylix.nix @@ -1,13 +1,9 @@ +{ config, pkgs, inputs, flakeRoot, ... }: + { - config, - pkgs, - flakeRoot, - ... -}: -{ - # Import the Stylix NixOS module + # Import the Stylix NixOS module from the flake input imports = [ - stylix.nixosModules.stylix + inputs.stylix.nixosModules.stylix ]; # Minimal configuration