update ags

This commit is contained in:
biscuit
2025-05-13 19:43:34 -05:00
parent 0f4d658121
commit cc179c30a3
5 changed files with 82 additions and 37 deletions
+17
View File
@@ -0,0 +1,17 @@
{ inputs, pkgs, ... }: {
# add the home manager module
imports = [ inputs.ags.homeManagerModules.default ];
programs.ags = {
enable = true;
# symlink to ~/.config/ags
configDir = ./custom;
# additional packages to add to gjs's runtime
extraPackages = with pkgs; [
inputs.ags.packages.${pkgs.system}.battery
fzf
];
};
}