nixos-config/home-manager/modules/ags.nix
2024-08-18 23:58:42 -04:00

16 lines
397 B
Nix

# A cat clone with syntax highlighting and Git integration.
{pkgs, ...}: {
programs.ags = {
enable = true;
# null or path, leave as null if you don't want hm to manage the config
# configDir = ../ags;
# additional packages to add to gjs's runtime
extraPackages = with pkgs; [
gtksourceview
webkitgtk
accountsservice
libdbusmenu-gtk3
];
};
}