nix/users/gandalf/modules/gui/ags/default.nix
2024-04-01 12:29:46 +02:00

16 lines
294 B
Nix

{ 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
];
};
}