Move the whole MakeMKV config into a module

This commit is contained in:
Andreas Zweili 2023-04-22 17:03:18 +02:00
parent 81a6d52c97
commit 02c5e2aa73
3 changed files with 10 additions and 1 deletions

View File

@ -33,7 +33,6 @@ in
freetube
chromium
libreoffice-fresh
makemkv
meld
nodePackages.prettier # formatting files
plexamp

View File

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

View File

@ -9,6 +9,7 @@
"${custom.inputs.self}/hardware/dvd"
(import "${custom.inputs.self}/modules/desktop" { inherit custom; })
"${custom.inputs.self}/modules/logs-share"
(import "${custom.inputs.self}/modules/makemkv" { inherit custom; })
"${custom.inputs.self}/modules/rdp"
(import "${custom.inputs.self}/modules/restic-client-desktop" { inherit custom; })
];