nix-files/hosts/common/programs/wine.nix
Colin 715ac42f13 remove samba from closure
current samba hangs during configurePhase. this is not the first time samba has failed to build. nor the third. purge it.
2024-02-01 15:28:40 +00:00

16 lines
669 B
Nix

{ 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" ];
persist.byStore.plaintext = [
# Power Bomberman: <https://www.bombermanboard.com/viewtopic.php?t=1925>
".wine/drive_c/users/colin/AppData/pb"
];
};
}