trying ags

This commit is contained in:
cnst
2024-07-14 16:12:48 +02:00
parent b6a435c14f
commit 53cbebb9dd
5 changed files with 45 additions and 10 deletions

View File

@@ -0,0 +1,22 @@
{
inputs,
pkgs,
...
}: {
# add the home manager module
imports = [inputs.ags.homeManagerModules.default];
programs.ags = {
enable = true;
# null or path, leave as null if you don't want hm to manage the config
configDir = ./.;
# additional packages to add to gjs's runtime
extraPackages = with pkgs; [
gtksourceview
webkitgtk
accountsservice
];
};
}