nixfiles/hosts/raspberry/raspberry.nix
2023-09-20 18:44:24 +01:00

31 lines
594 B
Nix

{tree, ...}: {
imports = with tree;
[
presets.nixos.serverBase
profiles.nginx
profiles.firewallAllow.httpCommon
profiles.chaosInternalWireGuard
./containers/piped-uk/default.nix
./secrets.nix
./boot.nix
]
++ (with hosts.raspberry.profiles; [
externalDrive
autoStorageBackups
rclone
]);
networking.enableIPv6 = true;
networking.useDHCP = true;
networking.hostName = "raspberry";
time.timeZone = "Europe/London";
home-manager.users.root.home.stateVersion = "23.05";
system.stateVersion = "23.05";
}