nix-config/modules2/makemkv.nix
Oliver Davies 865c60d557
All checks were successful
/ check (push) Successful in 1m45s
Make more things desktop only
2025-07-31 19:48:30 +01:00

15 lines
315 B
Nix

{ config, ... }:
{
nixpkgs.allowedUnfreePackages = [ "makemkv" ];
flake.modules.nixos.desktop =
{ pkgs, ... }:
{
boot.kernelModules = [ "sg" ];
environment.systemPackages = with pkgs; [ makemkv ];
users.users.${config.flake.meta.owner.username}.extraGroups = [ "cdrom" ];
};
}