26 lines
481 B
Nix
26 lines
481 B
Nix
{
|
|
inputs,
|
|
config,
|
|
self,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
self.nixosModules.common
|
|
|
|
(inputs.import-tree ./services)
|
|
|
|
];
|
|
|
|
clan.core.sops.defaultGroups = [ "admins" ];
|
|
clan.core.networking.targetHost = "root@[${config.clan.core.vars.generators.zerotier.files.zerotier-ip.value}]";
|
|
|
|
nixpkgs.hostPlatform = {
|
|
system = "x86_64-linux";
|
|
};
|
|
|
|
networking.fqdn = config.clan.core.vars.generators.vega-internal-domain.files.name.value;
|
|
system.stateVersion = "25.11";
|
|
|
|
}
|