diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 22:52:20 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 23:00:44 -0700 |
| commit | 2f17e369400b9c895b3554008ab3efbc76255428 (patch) | |
| tree | 172c910e17f14bb8d0d7306fe527c2c79140df64 /roles/home/desktop/mpv.nix | |
| parent | 10c984caf7067656990e5966b4626314f225755f (diff) | |
roles: home: migrate old home module to roles
Diffstat (limited to 'roles/home/desktop/mpv.nix')
| -rw-r--r-- | roles/home/desktop/mpv.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/roles/home/desktop/mpv.nix b/roles/home/desktop/mpv.nix new file mode 100644 index 0000000..73a9687 --- /dev/null +++ b/roles/home/desktop/mpv.nix @@ -0,0 +1,10 @@ +{ ... }: + +{ + programs.mpv = { + config = { + screenshot-format = "png"; + screenshot-template = "~/Pictures/Screenshots/mpv/%F/%P"; + }; + }; +} |