mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
13 lines
269 B
Nix
13 lines
269 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib;
|
|
{
|
|
options.aviallon.windows.wine = {
|
|
enable = mkEnableOption "windows executable support on Linux";
|
|
};
|
|
config = {
|
|
environment.systemPackages = with pkgs; [
|
|
bottles
|
|
wineWowPackages.waylandFull
|
|
];
|
|
};
|
|
}
|