dotfiles/nixos/boxes/bolty/default.nix

34 lines
680 B
Nix
Raw Normal View History

2023-11-18 13:08:10 +00:00
{
lib,
pkgs,
...
}: {
2021-10-01 10:06:37 +01:00
imports = [
../cli.nix
2023-10-29 12:21:13 +00:00
../send-logs.nix
2023-01-01 18:37:49 +00:00
./bolty-boot.nix
2023-06-01 22:10:18 +01:00
./gitea-runner.nix
2023-10-29 12:32:51 +00:00
./grafana.nix
./home-assistant.nix
2023-05-06 08:27:17 +01:00
./home-security.nix
2023-11-02 18:04:13 +00:00
./influxdb.nix
2023-10-29 11:36:28 +00:00
./logs.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-10-21 22:14:19 +01:00
./videos.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";
networking.hostId = "f05dd3b4";
2021-10-01 10:06:37 +01:00
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
time.timeZone = "Europe/London";
}