nix-dotfiles/programs/ags/default.nix
2024-02-22 23:59:01 -08:00

23 lines
489 B
Nix

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