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

12 lines
344 B
Nix
Raw Normal View History

{ ... }:
{
sane.programs.wine = {
# 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"
];
};
}