refactor2

This commit is contained in:
Lilith 2025-03-12 15:59:23 +01:00
parent f0a79a07f1
commit 06f6636d75
Signed by: lilith
GPG key ID: 8712A0F317C37175
5 changed files with 57 additions and 63 deletions

View file

@ -0,0 +1,10 @@
{stylix, pkgs, config, lib, ...}: {
options.stylix.enable = lib.mkEnableOption "Enable Stylix";
config = lib.mkIf config.stylix.enable {
imports = [
stylix.nixosModules.stylix
./style.nix
];
};
}