nix-config/hosts/server10/default.nix

45 lines
849 B
Nix
Raw Normal View History

2022-05-14 20:33:56 +02:00
{ config, pkgs, ... }:
{
2022-06-12 17:26:32 +02:00
imports = [
./hardware-configuration.nix
./network.nix
./microvm-staging.nix
./microvms.nix
];
c3d2.hq.statistics.enable = true;
boot= {
loader.grub = {
enable = true;
version = 2;
device = "/dev/sda";
};
# kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
kernelParams = [
"preempt=none"
# No server/router runs any untrusted user code
"mitigations=off"
2022-05-14 20:33:56 +02:00
];
2022-06-12 17:26:32 +02:00
tmpOnTmpfs = true;
tmpOnTmpfsSize = "80%";
};
2022-05-14 20:33:56 +02:00
2022-06-12 17:26:32 +02:00
networking = {
hostName = "server10";
# TODO: change that to something more random
hostId = "10101010";
};
2022-05-14 20:33:56 +02:00
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 ];
};
2022-05-17 01:14:05 +02:00
2022-06-12 17:26:32 +02:00
services.openssh.enable = true;
2022-05-17 01:14:05 +02:00
2022-05-14 20:33:56 +02:00
system.stateVersion = "21.11"; # Did you read the comment?
}