feat(desktop): add aagl.
This commit is contained in:
parent
e607f24967
commit
a539ae2ee0
5 changed files with 134 additions and 56 deletions
20
modules/linux/nixos/aagl.nix
Normal file
20
modules/linux/nixos/aagl.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue