2023-09-18 03:56:58 +01:00
|
|
|
{tree, ...}: {
|
2023-09-13 19:26:50 +01:00
|
|
|
imports = with tree;
|
|
|
|
[
|
2023-09-18 03:56:58 +01:00
|
|
|
presets.nixos.serverBase
|
2023-09-13 19:26:50 +01:00
|
|
|
|
|
|
|
./secrets.nix
|
|
|
|
./boot.nix
|
|
|
|
]
|
2024-07-21 20:43:32 +01:00
|
|
|
++ (with hosts.raspberry.profiles; []);
|
2023-09-13 19:26:50 +01:00
|
|
|
|
2023-09-18 03:56:58 +01:00
|
|
|
networking.enableIPv6 = true;
|
|
|
|
networking.useDHCP = true;
|
2022-01-24 16:50:53 +00:00
|
|
|
|
2022-01-03 16:50:22 +00:00
|
|
|
networking.hostName = "raspberry";
|
|
|
|
time.timeZone = "Europe/London";
|
|
|
|
|
2024-05-25 21:10:26 +01:00
|
|
|
home-manager.users.root.home.stateVersion = "24.05";
|
|
|
|
system.stateVersion = "24.05";
|
2022-01-03 16:50:22 +00:00
|
|
|
}
|