nixfiles/hosts/raspberry/raspberry.nix
2024-07-21 20:43:32 +01:00

20 lines
389 B
Nix

{tree, ...}: {
imports = with tree;
[
presets.nixos.serverBase
./secrets.nix
./boot.nix
]
++ (with hosts.raspberry.profiles; []);
networking.enableIPv6 = true;
networking.useDHCP = true;
networking.hostName = "raspberry";
time.timeZone = "Europe/London";
home-manager.users.root.home.stateVersion = "24.05";
system.stateVersion = "24.05";
}