feat(home/productivity): install gtkhal on graphical hosts

Assisted-by: pi (gpt-5.6-sol)
This commit is contained in:
Gabriel Fontes
2026-08-16 11:24:16 -03:00
parent 940fcc823f
commit 04325fa348
2 changed files with 10 additions and 0 deletions
@@ -1,6 +1,7 @@
{
imports = [
./khal.nix
./gtkhal.nix
./khard.nix
./todoman.nix
./oama.nix
@@ -0,0 +1,9 @@
{
config,
pkgs,
lib,
...
}:
lib.mkIf config.gtk.enable {
home.packages = [pkgs.gtkhal];
}