nix/nixos/hosts/warsaw-ovh-01/default.nix
2024-09-02 17:38:17 +09:00

59 lines
2.2 KiB
Nix

{ inputs, config, lib, pkgs, hostname, modulesPath, system, ... }: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
../../common/modules/boot.nix
../../common/modules/builder.nix
# ../../common/services/docker.nix
../../common/services/tailscale-autoconnect.nix
# ../../common/modules/fail2ban/traefik.nix
# Copy from framework-server
../framework-server/cron.nix
../framework-server/firewall.nix
../framework-server/containers.nix
# Host Specific
./disks.nix
./wireguard.nix
];
environment.systemPackages = [
inputs.deploy-rs.packages.${system}.deploy-rs
pkgs.distrobox
];
# backups-rpi4 cron job to back up sysctl.io's Docker files
# osaka-linode-01 cron job to copy certs for the DERP relay
# milan-linode-01 cron job to copy certs for the DERP relay
# frankfurt-linode-01 cron job to copy certs for the DERP relay
users.users.root.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKp2wgqFcr0LGaUXbom88/zK2631pysePUWIaCMljT0K root@backups-rpi4''
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKkNFdEcYIrjss1Nz0tU/AX89hUMmxB/Vabvsa7A6E2K root@osaka-linode-01''
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIORCrD/ZWXbAfi5eIN8b9dwuvMuPPTgpMiIFh1WagXV2 root@milan-linode-01''
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBGXiWUR2T5HXQ4g/En+eJ9K6GSokl3tEK7RZcYb+0UA root@frankfurt-linode-01''
];
services.openssh.settings.PermitRootLogin = lib.mkForce "prohibit-password";
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "sd_mod" "uas" ];
boot.initrd.kernelModules = [ "r8152" ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
networking.useDHCP = lib.mkDefault true;
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# Set your time zone.
time.timeZone = "Europe/Warsaw";
# Set the networking hostname:
networking.hostName = hostname;
services.tailscale.extraUpFlags = [
"--advertise-exit-node"
];
boot.kernel.sysctl = {
"net.ipv4.ip_forward" = true;
};
}