2024-02-16 21:32:55 -08:00
|
|
|
{ inputs, pkgs, ... }:
|
|
|
|
|
{
|
|
|
|
|
# add the home manager module
|
|
|
|
|
imports = [ inputs.ags.homeManagerModules.default ];
|
|
|
|
|
|
2024-02-22 23:59:01 -08:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
libnotify # Notifications through ags
|
|
|
|
|
];
|
|
|
|
|
|
2024-02-16 21:32:55 -08:00
|
|
|
programs.ags = {
|
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
|
|
# null or path, leave as null if you don't want hm to manage the config
|
|
|
|
|
configDir = ./config;
|
|
|
|
|
|
2024-02-22 23:59:01 -08:00
|
|
|
# additional packages to add to ags's runtime
|
2024-02-16 21:32:55 -08:00
|
|
|
extraPackages = with pkgs; [
|
|
|
|
|
gtksourceview
|
|
|
|
|
webkitgtk
|
|
|
|
|
accountsservice
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|