dotfiles/nixos/boxes/bolty/default.nix

26 lines
615 B
Nix
Raw Normal View History

2023-01-01 18:37:49 +00: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
2023-02-26 18:32:29 +00:00
./grafana.nix
./home-assistant.nix
2023-05-06 08:27:17 +01:00
./home-security.nix
2023-02-26 12:05:55 +00:00
./influxdb.nix
2021-10-30 10:22:04 +01:00
./matrix-server.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-01-01 18:37:49 +00: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";
2021-10-01 10:06:37 +01:00
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
time.timeZone = "Europe/London";
}