Files
nix-dotfiles/systems/argiletum/configuration.nix
T

28 lines
518 B
Nix
Raw Normal View History

2026-05-03 13:59:56 -04:00
{ lib, ... }:
{
2026-05-03 14:09:35 -04:00
imports = [ ./disk.nix ];
2026-05-03 13:59:56 -04:00
time.timeZone = "America/New_York";
networking = {
2026-05-03 14:09:35 -04:00
hostId = "c3798ccc";
2026-05-03 13:59:56 -04:00
firewall = {
enable = true;
allowedTCPPorts = [ 80 ];
};
useNetworkd = true;
};
# Raspberry Pi 4 uses U-Boot / extlinux, not systemd-boot
boot.useSystemdBoot = lib.mkForce false;
sops = {
defaultSopsFile = ./secrets.yaml;
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
};
services.tang.enable = true;
2026-05-03 14:09:35 -04:00
system.stateVersion = "26.11";
2026-05-03 13:59:56 -04:00
}