nixos/home-manager/plex.nix

10 lines
244 B
Nix
Raw Normal View History

2022-11-04 19:35:57 +01:00
{ custom }: { ... }:
2022-10-17 21:58:10 +02:00
{
imports = [
2022-11-04 19:35:57 +01:00
(import "${custom.inputs.self}/home-manager/headless.nix" { inherit custom; })
(import "${custom.inputs.self}/home-manager/software/podget" {
2022-10-17 21:58:10 +02:00
downloadDir = "/mnt/media/podcasts";
})
];
}