From b1d2eedcdf0cc73b72dcae7967390cc390311fec Mon Sep 17 00:00:00 2001 From: sefidel Date: Thu, 16 Nov 2023 12:38:01 +0900 Subject: feat(modules/neotheme): add gtk support --- home/modules/misc/neotheme/default.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'home/modules/misc/neotheme/default.nix') diff --git a/home/modules/misc/neotheme/default.nix b/home/modules/misc/neotheme/default.nix index 01c05bb..2a0eabe 100644 --- a/home/modules/misc/neotheme/default.nix +++ b/home/modules/misc/neotheme/default.nix @@ -51,5 +51,32 @@ in "bright6" "bright7" ]); + + gtk = { + theme = { + dark = mkOption { + type = types.str; + default = ""; + description = "Theme for light mode"; + }; + light = mkOption { + type = types.str; + default = ""; + description = "Theme for light mode"; + }; + }; + iconTheme = { + dark = mkOption { + type = types.str; + default = ""; + description = "Icon theme for light mode"; + }; + light = mkOption { + type = types.str; + default = ""; + description = "Icon theme for light mode"; + }; + }; + }; }; } -- cgit 1.4.1