feat(homeModules:gaming): add bottles and wine related pkgs

This commit is contained in:
ooks-io 2024-05-16 22:03:46 +12:00
parent b821ac5226
commit 94d786e1d0
5 changed files with 39 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
let
cfg = config.profiles.gaming;
in
@ -11,8 +11,15 @@ in
config = lib.mkIf cfg.enable {
homeModules.desktop = {
gaming = {
lutris.enable = true;
lutris.enable = false;
};
};
home.packages = with pkgs; [
bottles
winetricks
protontricks
protonup-qt
wineWowPackages.full
];
};
}