games: Add anime game

This commit is contained in:
caem 2025-02-27 01:36:50 +01:00
parent f6adc424e3
commit e065c5475c
Signed by: caem
GPG key ID: 69A830D03203405F
3 changed files with 51 additions and 1 deletions

View file

@ -1,10 +1,11 @@
{ pkgs, username, ... }:
{ pkgs, username, inputs, ... }:
{
environment.persistence."/nix/persist" = {
users."${username}".directories = [
".local/share/steam_home"
".local/share/osu"
".local/share/an-anime-game-launcher"
];
};
@ -18,4 +19,7 @@
enable = true;
gamescopeSession.enable = true;
};
nix.settings = inputs.aagl.nixConfig;
programs.anime-game-launcher.enable = true;
}