16 lines
383 B
Nix
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
|
|
];
|
|
};
|
|
}
|