20 lines
389 B
Nix
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";
|
|
}
|