Move makemkv configuration

This commit is contained in:
Oliver Davies 2025-07-25 21:29:51 +01:00
parent d31dcb54b6
commit ce3270b773
10 changed files with 13 additions and 51 deletions

13
modules2/makemkv.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, ... }:
{
flake.modules.nixos.pc =
{ pkgs, ... }:
{
boot.kernelModules = [ "sg" ];
environment.systemPackages = with pkgs; [ makemkv ];
users.users.${config.flake.meta.owner.username}.extraGroups = [ "cdrom" ];
};
}