From ab204364dfeefc4069a37e1070ee8009f34ecf4d Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 8 Apr 2022 08:31:15 -0700 Subject: profiles: create a few new profiles --- profiles/gtk/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 profiles/gtk/default.nix (limited to 'profiles/gtk') 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; + }; +} -- cgit 1.4.1