Files
infra/machines/ramus/configuration.nix
kurogeek cf30c9e92d mob next [ci-skip] [ci skip] [skip ci]
lastFile:machines/ramus/configuration.nix
2025-11-26 14:44:28 +07:00

22 lines
537 B
Nix

{ self, 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}]";
imports = [
self.nixosModules.think-gtcm
self.nixosModules.think-backend.gtcm
];
nixpkgs.overlays = [ self.overlays.packagesOverlay ];
}