diff --git a/home/gabriel/features/productivity/default.nix b/home/gabriel/features/productivity/default.nix index cacfb48b..15411ccd 100644 --- a/home/gabriel/features/productivity/default.nix +++ b/home/gabriel/features/productivity/default.nix @@ -1,6 +1,7 @@ { imports = [ ./khal.nix + ./gtkhal.nix ./khard.nix ./todoman.nix ./oama.nix diff --git a/home/gabriel/features/productivity/gtkhal.nix b/home/gabriel/features/productivity/gtkhal.nix new file mode 100644 index 00000000..cb933bb3 --- /dev/null +++ b/home/gabriel/features/productivity/gtkhal.nix @@ -0,0 +1,9 @@ +{ + config, + pkgs, + lib, + ... +}: +lib.mkIf config.gtk.enable { + home.packages = [pkgs.gtkhal]; +}