From 5e2789db727f80eb340126e116f5b37382e5ef37 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 13 Dec 2025 12:40:05 -0800 Subject: install MakeMKV and some tools --- machines/nixos/x86_64-linux/rivendell.nix | 1 + profiles/makemkv.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 profiles/makemkv.nix diff --git a/machines/nixos/x86_64-linux/rivendell.nix b/machines/nixos/x86_64-linux/rivendell.nix index fcbcf33..f106f83 100644 --- a/machines/nixos/x86_64-linux/rivendell.nix +++ b/machines/nixos/x86_64-linux/rivendell.nix @@ -13,6 +13,7 @@ ../../../profiles/git-server.nix ../../../profiles/hardware/framework-desktop.nix ../../../profiles/home-manager.nix + ../../../profiles/makemkv.nix ../../../profiles/miniflux.nix ../../../profiles/remote-unlock.nix ../../../profiles/restic-backup.nix 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" ]; +} -- cgit v1.2.3