mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
26 lines
393 B
Nix
26 lines
393 B
Nix
{
|
|
meta,
|
|
...
|
|
}: {
|
|
imports = let
|
|
inherit (meta) nixos;
|
|
in [
|
|
#nixos.sops
|
|
nixos.base
|
|
nixos.reisen-ct
|
|
nixos.tailscale
|
|
];
|
|
|
|
#sops.defaultSopsFile = ./secrets.yaml;
|
|
|
|
systemd.network.networks.eth0 = {
|
|
name = "eth0";
|
|
matchConfig = {
|
|
MACAddress = "BC:24:11:34:F4:AB";
|
|
Type = "ether";
|
|
};
|
|
DHCP = "yes";
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|