nixos/modules/desktop/game/wine.nix
2023-07-07 22:46:47 +03:00

18 lines
356 B
Nix

{ options, config, lib, pkgs, ...}:
with lib;
let cfg = config.modules.desktop.game.wine;
in {
options.modules.desktop.game.wine = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
winetricks
wineWowPackages.staging
];
};
}