This commit is contained in:
Lilith 2024-06-12 21:46:38 +02:00
parent 8d1495c855
commit 7a4828af0d
Signed by: lilith
GPG key ID: 8712A0F317C37175
3 changed files with 220 additions and 0 deletions

19
home/ags/default.nix Normal file
View file

@ -0,0 +1,19 @@
{
pkgs, ...
}: {
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 = ../ags;
# additional packages to add to gjs's runtime
extraPackages = with pkgs; [
gtksourceview
webkitgtk
accountsservice
];
};
}