infrastructure/systems/litterbox/nixos.nix
2024-03-01 12:25:46 -08:00

24 lines
409 B
Nix

{meta, ...}: {
imports = let
inherit (meta) nixos;
in [
nixos.sops
nixos.base
nixos.reisen-ct
nixos.tailscale
nixos.syncthing-kat
];
sops.defaultSopsFile = ./secrets.yaml;
systemd.network.networks.eth0 = {
name = "eth0";
matchConfig = {
MACAddress = "BC:24:11:C4:66:AB";
Type = "ether";
};
DHCP = "yes";
};
system.stateVersion = "23.11";
}