Initial commit

This commit is contained in:
blahai 2024-08-30 20:38:37 +03:00
commit fcfb6cf997
No known key found for this signature in database
8 changed files with 1720 additions and 0 deletions

View file

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