main
 1{
 2  den.hosts.hyacine = {
 3    system = "x86_64-linux";
 4    description = ''
 5      Hyacine - x86_64 Linux VPS for lightweight tasks.
 6      Based on a KVM virtual host,
 7      with AMD EPYC 7K62 2 core @ 2.6GHz, 2GB RAM and 30GB SSD storage.
 8    '';
 9
10    users.hpcesia = {
11      admin = true;
12      classes = ["user" "hjem"];
13    };
14
15    settings.secret.pubKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAlF4NQvg+huSucSEvnS8vxwqyNPPTa4kxNW184WxnhH root@hyacine";
16
17    settings.core.openssh = {
18      server = {
19        enable = true;
20        port = 22876;
21      };
22      authorizedKeys = [
23        "sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIH6wZFUEv9pSV+MgzqZRJ08WwJvL5FRMhayp73kCnDckAAAABHNzaDo= me@hpcesia.com"
24      ];
25    };
26  };
27}