infrastructure/systems/reimu/nixos.nix
2024-02-09 16:06:34 -08:00

32 lines
478 B
Nix

{
meta,
...
}: {
imports = let
inherit (meta) nixos;
in [
nixos.sops
nixos.base
nixos.reisen-ct
nixos.kyuuto
nixos.tailscale
nixos.nfs
];
kyuuto.setup = true;
proxmoxLXC.privileged = true;
systemd.network.networks.eth0 = {
name = "eth0";
matchConfig = {
MACAddress = "BC:24:11:C4:66:A8";
Type = "ether";
};
DHCP = "no";
};
sops.defaultSopsFile = ./secrets.yaml;
system.stateVersion = "23.11";
}