multimedia: Add video related applications

This commit is contained in:
caem 2025-02-02 00:14:38 +01:00
parent 34b4cf62c2
commit c4accfc1d5
Signed by: caem
GPG key ID: 69A830D03203405F

View file

@ -0,0 +1,14 @@
{ pkgs, username, ... }:
{
environment.persistence."/nix/persist" = {
users."${username}".directories = [
];
};
environment.systemPackages = with pkgs; [
mpv
handbrake
parabolic
];
}