nixos-server/services/readme.md

27 lines
383 B
Markdown
Raw Normal View History

2024-05-24 11:13:36 +02:00
# Services
TODO: volumes
Contains files defining services.
Services are of the form:
```nix
{ pkgs, ... }: {
name = "name";
config = { ... };
ports = {
tcp = [ 80 ];
udp = [ 111 ];
http = 80;
};
hosts = [ "myservice.domain.mjau" ];
2024-05-25 01:01:07 +02:00
volumes = [
{
name = "myservice-storage";
mountPoint = "/var/lib/whatever";
readOnly = false;
};
];
2024-05-24 11:13:36 +02:00
}
```