61 lines
1.3 KiB
Nix
61 lines
1.3 KiB
Nix
{
|
|
syscfg = {
|
|
hostname = "sandbox";
|
|
type = "nixos";
|
|
system = "x86_64-linux";
|
|
defaultUser = "sora";
|
|
users = [{
|
|
username = "sora";
|
|
pubssh = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrrUB0KBjeAKPVG2Bdcm4mI9AMab7y97SOCdEHGogYv sora@gateway";
|
|
wm = "-";
|
|
git = {
|
|
email = "soraefir+git@helcel";
|
|
username = "soraefir";
|
|
key = "4E241635F8EDD2919D2FB44CA362EA0491E2EEA0";
|
|
};
|
|
}];
|
|
make = {
|
|
cli = true;
|
|
virt = true;
|
|
};
|
|
server = {
|
|
openssh = true;
|
|
web = true;
|
|
sops = true;
|
|
|
|
hostDomain = "test.helcel.net";
|
|
shortName = "testcel";
|
|
mailDomain = "test@helcel";
|
|
mailServer = "infomaniak.ch";
|
|
|
|
dbHost = "localhost";
|
|
|
|
containers = {
|
|
#cloud = {enable = true;};
|
|
authentik = {
|
|
enable = true;
|
|
db = true;
|
|
subdomain = "sso";
|
|
ip = "10.88.0.125";
|
|
port = 9000;
|
|
pubPort = 9999;
|
|
};
|
|
collabora = {
|
|
enable = true;
|
|
db = false;
|
|
subdomain = "office";
|
|
ip = "10.88.0.127";
|
|
port = 9980;
|
|
};
|
|
etherpad = {
|
|
enable = true;
|
|
db = true;
|
|
subdomain = "pad";
|
|
ip = "10.88.0.128";
|
|
port = 80;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|