about summary refs log tree commit diff
path: root/profiles/gtk
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--profiles/gtk/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/profiles/gtk/default.nix b/profiles/gtk/default.nix
new file mode 100644
index 0000000..c84832b
--- /dev/null
+++ b/profiles/gtk/default.nix
@@ -0,0 +1,13 @@
+{ config, lib, ... }:
+let cfg = config.my.profiles.gtk;
+in {
+  options.my.profiles.gtk = with lib; {
+    enable = mkEnableOption "gtk profile";
+  };
+  config = lib.mkIf cfg.enable {
+    # Allow setting GTK configuration using home-manager
+    programs.dconf.enable = true;
+    # GTK theme configuration
+    my.home.gtk.enable = true;
+  };
+}