nix-files/hosts/common/programs/wine.nix

16 lines
669 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
sane.programs.wine = {
# `pkgs.wine == pkgs.winePackages.full`
# not sure the practical difference between `full` and `base`, but `full` drags in thngs like samba which i _probably_ don't need.
# could build with `supportFlags.netapiSupport = false` to use `full` but without samba.
packageUnwrapped = pkgs.winePackages.base;
# no need for the cryptographic nature, just needs to not use loads of / tmpfs.
persist.byStore.cryptClearOnBoot = [ ".wine" ];
2023-11-26 12:18:08 +00:00
persist.byStore.plaintext = [
# Power Bomberman: <https://www.bombermanboard.com/viewtopic.php?t=1925>
".wine/drive_c/users/colin/AppData/pb"
];
};
}