2023-08-13 17:00:41 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
2021-10-01 10:06:37 +01:00
|
|
|
imports = [
|
|
|
|
../cli.nix
|
2023-01-01 18:37:49 +00:00
|
|
|
./bolty-boot.nix
|
2023-06-01 22:10:18 +01:00
|
|
|
./gitea-runner.nix
|
2022-12-09 11:10:15 +00:00
|
|
|
./home-assistant.nix
|
2023-05-06 08:27:17 +01:00
|
|
|
./home-security.nix
|
2021-10-30 10:22:04 +01:00
|
|
|
./matrix-server.nix
|
2023-06-22 10:42:53 +01:00
|
|
|
./nas.nix
|
2023-04-22 12:19:16 +01:00
|
|
|
./networking.nix
|
2023-01-01 18:37:49 +00:00
|
|
|
./nix-store-server.nix
|
2022-04-09 12:01:03 +01:00
|
|
|
./print-server.nix
|
2023-01-01 18:37:49 +00:00
|
|
|
./real-hardware.nix
|
2022-04-09 12:01:03 +01:00
|
|
|
./restic-server.nix
|
2023-02-26 12:05:55 +00:00
|
|
|
./tailscale-cert.nix
|
2023-04-22 12:30:19 +01:00
|
|
|
./virtualisation.nix
|
2021-10-01 10:06:37 +01:00
|
|
|
];
|
2023-08-13 17:00:41 +01:00
|
|
|
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
2022-12-12 19:41:11 +00:00
|
|
|
programs.ccache.enable = true;
|
2022-12-21 10:47:15 +00:00
|
|
|
networking.hostName = "bolty";
|
2023-07-24 19:03:54 +01:00
|
|
|
networking.hostId = "f05dd3b4";
|
2021-10-01 10:06:37 +01:00
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
|
|
|
|
|
|
time.timeZone = "Europe/London";
|
|
|
|
}
|