flocon/home/programs/ags/default.nix

22 lines
379 B
Nix
Raw Normal View History

2024-10-02 17:59:58 +00:00
{
inputs,
pkgs,
...
}: {
imports = [inputs.ags.homeManagerModules.default];
2024-10-03 09:18:45 +00:00
2024-10-02 17:59:58 +00:00
programs.ags = {
enable = true;
# null or path, leave as null if you don't want hm to manage the config
configDir = ./src;
# additional packages to add to gjs's runtime
extraPackages = with pkgs; [
gtksourceview
webkitgtk
accountsservice
];
};
}