nixos-config/sets/disc.nix

14 lines
200 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
cyanrip
makemkv
];
# Needed for MakeMKV
boot.kernelModules = [ "sg" ];
users.users.artemis.extraGroups = [ "cdrom" ];
}