15 lines
374 B
Nix
15 lines
374 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
|
|
];
|
|
};
|
|
}
|