14 lines
375 B
Nix
14 lines
375 B
Nix
{ inputs, config, ... }:
|
|
{
|
|
nixpkgs.hostPlatform = {
|
|
system = "x86_64-linux";
|
|
};
|
|
system.stateVersion = "25.11";
|
|
clan.core.sops.defaultGroups = [ "admins" ];
|
|
clan.core.networking.targetHost = "root@[${config.clan.core.vars.generators.zerotier.files.zerotier-ip.value}]";
|
|
|
|
clan.meta.name = "neptune";
|
|
clan.meta.description = "Radxa SBC board for testing.";
|
|
|
|
}
|