system/aagl: init, and enable on hyacinth

This commit is contained in:
LavaDesu 2025-01-03 18:39:05 +11:00
parent ec14782c77
commit 7d79d605d3
Signed by: cilly
GPG key ID: 6500251E087653C9
5 changed files with 71 additions and 10 deletions

View file

@ -25,6 +25,7 @@ in {
./services/vaultwarden.nix
];
system = mkAttrsFromPaths [
./system/aagl.nix
./system/audio.nix
./system/base.nix
./system/bluetooth.nix

6
modules/system/aagl.nix Normal file
View file

@ -0,0 +1,6 @@
{ inputs, ... }: {
imports = [ inputs.aagl.nixosModules.default ];
nix.settings = inputs.aagl.nixConfig;
programs.anime-game-launcher.enable = true;
programs.sleepy-launcher.enable = true;
}