15 lines
306 B
Nix
15 lines
306 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [ inputs.matthew-hardware];
|
|
|
|
nixpkgs.hostPlatform = {
|
|
system = "aarch64-linux";
|
|
};
|
|
system.stateVersion = "26.11";
|
|
clan.core.sops.defaultGroups = [ "admins" ];
|
|
|
|
clan.core.settings.name = "stellio";
|
|
clan.core.settings.machine.description = "Flint-2 router";
|
|
|
|
}
|