feat(aya): build box

This commit is contained in:
arcnmx 2024-02-12 11:52:57 -08:00
parent 8c32beacdf
commit f56d511812
15 changed files with 299 additions and 4 deletions

29
systems/aya/nixos.nix Normal file
View file

@ -0,0 +1,29 @@
{
config,
meta,
lib,
access,
...
}: {
imports = let
inherit (meta) nixos;
in [
nixos.sops
nixos.base
nixos.reisen-ct
nixos.tailscale
];
systemd.network.networks.eth0 = {
name = "eth0";
matchConfig = {
MACAddress = "BC:24:11:C4:66:A9";
Type = "ether";
};
DHCP = "no";
};
sops.defaultSopsFile = ./secrets.yaml;
system.stateVersion = "23.11";
}