use different stylix version to have an enable option

This commit is contained in:
Kopatz
2024-06-07 22:40:35 +02:00
parent 13259838c3
commit c08dc9e86f
6 changed files with 19 additions and 17 deletions

3
home-manager/stylix.nix Normal file
View File

@@ -0,0 +1,3 @@
{ osConfig, pkgs, config, lib, ... }:
let cfg = osConfig.custom.graphical.stylix;
in { config = lib.mkIf cfg.enable { stylix.enable = true; }; }