Files
nixconfig/systems/sandbox/cfg.nix
soraefir 2a9113e07d fix calc
2026-05-12 00:50:25 +02:00

72 lines
1.5 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;
hostDomain = "test.helcel.net";
mailDomain = "test@helcel";
mailServer = "infomaniak.ch";
containers = {
traefik = {
enable = true;
sops = true;
subdomain = "traefik";
extra={provider="infomaniak";};
};
authentik = {
enable = true;
db = true;
subdomain = "sso";
port = 9000;
};
nextcloud = {
enable = true;
db = true;
subdomain = "cloud";
};
collabora = {
enable = true;
sops = true;
subdomain = "office";
};
etherpad = {
enable = true;
db = true;
subdomain = "pad";
};
ethercalc = {
enable = true;
sops = true;
subdomain = "calc";
};
gitea = {
enable = true;
db = true;
subdomain = "git";
};
};
};
};
}