disable lutris for now

This commit is contained in:
Noa Aarts 2025-10-27 19:49:58 +01:00
parent 8f092f8ef4
commit 5784fc9606
Signed by: noa
GPG key ID: 1850932741EFF672
2 changed files with 3 additions and 2 deletions

View file

@ -154,6 +154,7 @@ in
modules = {
# imagine steam but like without a monitor
games.enable = enableGraphical && enableGames;
games.lutris.enable = false;
# other things I like to use
apps = {

View file

@ -20,7 +20,7 @@ in
];
config = lib.mkIf cfg.enable {
modules.games.minecraft.enable = true;
modules.games.lutris.enable = true;
modules.games.minecraft.enable = lib.mkDefault true;
modules.games.lutris.enable = lib.mkDefault true;
};
}