ooknet/home/modules/desktop/gaming/wine.nix
2024-06-11 22:37:17 +12:00

17 lines
253 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf;
cfg = config.ooknet.gaming.wine;
in
{
config = mkIf cfg.enable {
home.packages = with pkgs; [
winetricks
protontricks
protonup-qt
wineWowPackages.full
];
};
}