nix-config/hosts/server10/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.1 KiB
Nix
Raw Normal View History

2022-12-04 08:53:28 +01:00
{ config, ... }:
2022-05-14 20:33:56 +02:00
{
imports = [
./hardware-configuration.nix
2022-05-15 02:46:14 +02:00
./microvm-staging.nix
2022-06-12 17:26:32 +02:00
];
2022-08-05 18:19:12 +02:00
c3d2 = {
deployment.microvmBaseZfsDataset = "server10/vm";
hq.statistics.enable = true;
simd.arch = "ivybridge";
2022-08-05 18:19:12 +02:00
};
2022-06-12 17:26:32 +02:00
boot = {
2022-05-14 20:33:56 +02:00
loader.grub = {
enable = true;
version = 2;
device = "/dev/sda";
2022-06-12 17:26:32 +02:00
};
2022-07-20 20:57:17 +02:00
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
2022-05-14 20:33:56 +02:00
kernelParams = [
"preempt=none"
# No server/router runs any untrusted user code
"mitigations=off"
];
tmpOnTmpfs = true;
tmpOnTmpfsSize = "80%";
2022-06-12 17:26:32 +02:00
};
2022-05-14 20:33:56 +02:00
networking = {
2022-08-05 18:19:12 +02:00
firewall = {
enable = true;
allowedTCPPorts = [ 22 ];
};
2022-05-14 20:33:56 +02:00
hostName = "server10";
# TODO: change that to something more random
hostId = "10101010";
2022-06-12 17:26:32 +02:00
};
2022-05-14 20:33:56 +02:00
2022-08-05 18:19:12 +02:00
services = {
openssh.enable = true;
smartd.enable = true;
zfs.autoScrub.enable = true;
2022-05-14 20:33:56 +02:00
};
2022-05-17 01:14:05 +02:00
# static list of microvms from other sources
microvm.autostart = [
"data-hoarder"
"staging-data-hoarder"
];
skyflake.nomad.client.meta."c3d2.cpuSpeed" = "4";
2022-05-14 20:33:56 +02:00
system.stateVersion = "21.11"; # Did you read the comment?
}