16 lines
381 B
Nix
16 lines
381 B
Nix
{ config, ... }:
|
|
{
|
|
system.stateVersion = "25.11";
|
|
nixpkgs.hostPlatform = {
|
|
system = "x86_64-linux";
|
|
};
|
|
|
|
clan.meta.name = "ramus";
|
|
clan.meta.description = ''
|
|
A Hetzner VPS machine own by Alex.
|
|
'';
|
|
|
|
clan.core.sops.defaultGroups = [ "admins" ];
|
|
clan.core.networking.targetHost = "root@[${config.clan.core.vars.generators.zerotier.files.zerotier-ip.value}]";
|
|
}
|