set up makemkv persistence

This commit is contained in:
Leyla Becker 2025-06-04 18:37:53 -05:00
parent 7363fc97bc
commit 0f26b73f6a
5 changed files with 45 additions and 2 deletions

View file

@ -0,0 +1,17 @@
{
config,
inputs,
...
}: {
config = {
sops.secrets = {
"application-keys/makemkv" = {
sopsFile = "${inputs.secrets}/application-keys.yaml";
};
};
programs.makemkv = {
appKeyFile = config.sops.placeholder."application-keys/makemkv";
destinationDir = "/home/leyla/downloads/makemkv";
};
};
}