diff options
| -rw-r--r-- | machines/nixos/x86_64-linux/rivendell.nix | 1 | ||||
| -rw-r--r-- | profiles/makemkv.nix | 12 |
2 files changed, 13 insertions, 0 deletions
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" ]; +} |
