dotfiles/homes/modules/ags/default.nix

13 lines
180 B
Nix
Raw Normal View History

2025-02-11 15:47:56 +10:00
{pkgs, ...}: {
programs.ags = {
enable = true;
configDir = ./.;
extraPackages = with pkgs; [
gtksourceview
webkitgtk
accountsservice
];
};
}