feat(desktop): add aagl.

This commit is contained in:
CronyAkatsuki 2025-05-31 18:06:20 +02:00
parent e607f24967
commit a539ae2ee0
5 changed files with 134 additions and 56 deletions

View file

@ -0,0 +1,20 @@
{
config,
inputs,
lib,
...
}: {
imports = [
inputs.aagl-gtk-on-nix.nixosModules.default
];
options = {
crony.aagl.enable = lib.mkEnableOption "Enable aagl.";
};
config = lib.mkIf config.crony.aagl.enable {
nix.settings = inputs.aagl-gtk-on-nix.nixConfig;
programs.anime-game-launcher.enable = true;
};
}