ags: enable

This commit is contained in:
Veneficium 2024-11-12 17:56:32 +01:00
parent 4c23ebdc21
commit 347690561d
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
programs.ags = {
enable = true;
# additional packages to add to gjs's runtime
extraPackages = with pkgs; [
gtksourceview
webkitgtk
accountsservice
];
};
}

View file

@ -1,5 +1,7 @@
{ pkgs, ... }:
{
imports = [ ./ags.nix ];
services.mako = {
enable = true;
extraConfig = builtins.readFile ./mako.conf;