diff options
Diffstat (limited to 'profiles')
| -rw-r--r-- | profiles/makemkv.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/profiles/makemkv.nix b/profiles/makemkv.nix new file mode 100644 index 0000000..8daa4fd --- /dev/null +++ b/profiles/makemkv.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + ffmpeg + imagemagick + makemkv + ]; + + boot.kernelModules = [ "sg" ]; + + users.users.fcuny.extraGroups = [ "cdrom" ]; +} |
