trying stylix

This commit is contained in:
2026-03-17 08:39:15 +00:00
parent 7ef9caf4fc
commit 284d74cd5f
2 changed files with 11 additions and 11 deletions
+7 -3
View File
@@ -604,10 +604,14 @@ This sets the XDG implementation
** =generated/out_of_tree/core/stylix.nix= ** =generated/out_of_tree/core/stylix.nix=
This sets the stylix implementation This sets the stylix implementation
#+BEGIN_SRC nix :tangle generated/out_of_tree/core/stylix.nix :noweb tangle :mkdirp yes :eval never-html #+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 # Import the Stylix NixOS module from the flake input
stylix.nixosModules.stylix; imports = [
inputs.stylix.nixosModules.stylix
];
# Minimal configuration # Minimal configuration
stylix = { stylix = {
enable = true; enable = true;
@@ -1,13 +1,9 @@
{ config, pkgs, inputs, flakeRoot, ... }:
{ {
config, # Import the Stylix NixOS module from the flake input
pkgs,
flakeRoot,
...
}:
{
# Import the Stylix NixOS module
imports = [ imports = [
stylix.nixosModules.stylix inputs.stylix.nixosModules.stylix
]; ];
# Minimal configuration # Minimal configuration