21 lines
400 B
Nix
21 lines
400 B
Nix
|
{ options, config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
with lib.plusultra;
|
||
|
let
|
||
|
cfg = config.plusultra.cli-apps.wine;
|
||
|
in
|
||
|
{
|
||
|
options.plusultra.cli-apps.wine = with types; {
|
||
|
enable = mkBoolOpt false "Whether or not to enable Wine.";
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
winePackages.unstable
|
||
|
winetricks
|
||
|
wine64Packages.unstable
|
||
|
];
|
||
|
};
|
||
|
}
|