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