39 lines
845 B
Nix
39 lines
845 B
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";
|
|
shortName = "testcel";
|
|
mailDomain = "test@helcel";
|
|
mailServer = "infomaniak.ch";
|
|
|
|
dbHost = "localhost";
|
|
|
|
containers = {
|
|
cloud = {enable = true;};
|
|
authentik = {enable = true;};
|
|
};
|
|
};
|
|
};
|
|
}
|