aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home/modules/misc/neotheme/default.nix27
1 files changed, 27 insertions, 0 deletions
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";
+ };
+ };
+ };
};
}