nixos/home-manager/plex.nix

11 lines
286 B
Nix
Raw Normal View History

2022-10-17 21:58:10 +02:00
{ inputs, custom, pkgs, ... }:
{
imports = [
2022-10-17 22:03:42 +02:00
(import "${inputs.self}/home-manager/headless.nix" { inherit custom inputs pkgs; })
(import "${inputs.self}/home-manager/software/podget" {
2022-10-17 21:58:10 +02:00
downloadDir = "/mnt/media/podcasts";
inherit custom inputs pkgs;
})
];
}