theming.nix: remove usrEnv

This commit is contained in:
Charlie Root 2025-03-31 11:05:42 +02:00
commit fbf28fa931
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -6,9 +6,9 @@
}: let }: let
inherit (lib.modules) mkMerge mkIf; inherit (lib.modules) mkMerge mkIf;
inherit (lib.options) mkEnableOption; inherit (lib.options) mkEnableOption;
cfg = config.modules.usrEnv.theming; cfg = config.modules.theming;
in { in {
options.modules.usrEnv.theming = { options.modules.theming = {
gtk.enable = mkEnableOption "gtk theming"; gtk.enable = mkEnableOption "gtk theming";
qt.enable = mkEnableOption "qt theming"; qt.enable = mkEnableOption "qt theming";
}; };