feat: enable lutris

This commit is contained in:
Noa Aarts 2024-08-09 16:44:53 +02:00
parent 8c0af2c239
commit b69713e7fc
2 changed files with 15 additions and 0 deletions

12
modules/games/lutris.nix Normal file
View file

@ -0,0 +1,12 @@
{ lib, config, pkgs, ... }:
let
cfg = config.modules.games.lutris;
in
{
config = lib.mkIf cfg.enable {
home.packages = [
pkgs.lutris
pkgs.wineWowPackages.waylandFull
];
};
}