nix-files/hosts/common/programs/wine.nix
Colin 5528b6d87d games: ship wine
launch games with `wine some-game.exe`
2023-11-26 09:20:48 +00:00

8 lines
179 B
Nix

{ ... }:
{
sane.programs.wine = {
# no need for the cryptographic nature, just needs to not use loads of / tmpfs.
persist.byStore.cryptClearOnBoot = [ ".wine" ];
};
}