update containers + add some more
This commit is contained in:
parent
d2c3cd93a1
commit
8928af8c38
11 changed files with 74 additions and 38 deletions
14
nixos/lavender/containers/plex.nix
Normal file
14
nixos/lavender/containers/plex.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
# Plex
|
||||
virtualisation.oci-containers.containers."plex" = {
|
||||
autoStart = true;
|
||||
image = "lscr.io/linuxserver/plex:latest";
|
||||
volumes = [
|
||||
"/srv/plex:/config"
|
||||
"/srv/media:/media"
|
||||
];
|
||||
ports = [ "32400:32400" ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue