about summary refs log tree commit diff
path: root/profiles/gtk/default.nix
blob: c84832b099387831ebe8295476e4276639c517e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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;
  };
}