nixos/modules/makemkv/default.nix

10 lines
167 B
Nix
Raw Normal View History

{ custom }: { pkgs, ... }:
{
home-manager.users.${custom.username} = {
home.packages = with pkgs; [
makemkv
];
};
boot.kernelModules = [ "sg" ];
}