nixos-config/home-manager/modules/ags.nix
gwg313 58f06d6729
lots of stuff
Signed-off-by: gwg313 <gwg313@pm.me>
2025-06-30 18:13:14 -04:00

16 lines
383 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
accountsservice
libdbusmenu-gtk3
];
};
}