nixos/modules/home/ags.nix
2024-09-12 16:49:06 -04:00

20 lines
324 B
Nix

{
inputs,
pkgs,
...
}: {
imports = [inputs.ags.homeManagerModules.default];
home.packages = with pkgs; [
sassc
];
programs.ags = {
enable = true;
# additional packages to add to gjs's runtime
extraPackages = with pkgs; [
gtksourceview
webkitgtk
accountsservice
];
};
}