From 0d4ebaa71f35113737a92acaf350520d4629eb7f Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Wed, 18 Mar 2026 17:43:40 +0000 Subject: [PATCH] Reshuffling stuff --- Droidnix/generated/modules/system/stylix.nix | 23 -------------------- 1 file changed, 23 deletions(-) delete mode 100644 Droidnix/generated/modules/system/stylix.nix diff --git a/Droidnix/generated/modules/system/stylix.nix b/Droidnix/generated/modules/system/stylix.nix deleted file mode 100644 index 8328e04a7..000000000 --- a/Droidnix/generated/modules/system/stylix.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ config, pkgs, inputs, flakeRoot, ... }: - -let - _ = builtins.trace ("Stylix enable = " + toString config.stylix.enable) null; -in -{ - imports = [ - inputs.stylix.nixosModules.stylix - ]; - - environment.systemPackages = with pkgs; [ - feh # wallpaper target - #gtk3 # GTK target - # gtk4 # GTK target - st # NVF / terminal target, or kitty - ]; - - stylix = { - enable = true; - base16Scheme = "${flakeRoot}/assets/system/theming/stylix/catppuccin-mocha.yaml"; - polarity = "dark"; - }; -}