mepo: fix savestate to be persisted as a file -- not a directory

This commit is contained in:
Colin 2023-07-08 01:35:36 +00:00
parent 95c105367c
commit b8ccc271fc

View File

@ -6,7 +6,9 @@
sane.programs.mepo = {
persist.plaintext = [ ".cache/mepo/tiles" ];
# ~/.cache/mepo/savestate has precise coordinates and pins: keep those private
persist.private = [ ".cache/mepo/savestate" ];
persist.private = [
{ type = "file"; path = ".cache/mepo/savestate"; }
];
};
programs.mepo = lib.mkIf config.sane.programs.mepo.enabled {