2024-11-03 12:47:02 +01:00
|
|
|
{ inputs, config, lib, modulesPath, system, ... }: {
|
2023-12-19 03:17:00 +01:00
|
|
|
imports = [
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
2024-01-12 08:45:55 +01:00
|
|
|
../../common/services/tailscale-autoconnect.nix
|
2024-11-21 00:43:38 +01:00
|
|
|
../../common/modules/secureboot.nix
|
2024-10-29 12:29:39 +01:00
|
|
|
# ../../common/modules/secureboot.nix
|
2024-11-20 22:30:58 +01:00
|
|
|
../../common/modules/ssh-luks.nix
|
2024-11-20 22:37:13 +01:00
|
|
|
../../common/services/docker.nix
|
2023-12-19 03:17:00 +01:00
|
|
|
./disks.nix
|
|
|
|
./mounts.nix
|
|
|
|
./cron.nix
|
|
|
|
];
|
|
|
|
|
2024-11-20 23:57:32 +01:00
|
|
|
environment.systemPackages = [
|
|
|
|
inputs.deploy-rs.packages.${system}.deploy-rs
|
|
|
|
];
|
|
|
|
|
|
|
|
# backups-rpi4: Backups
|
|
|
|
# warsaw-ovh-01: Backups
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
|
|
|
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKp2wgqFcr0LGaUXbom88/zK2631pysePUWIaCMljT0K root@backups-rpi4''
|
|
|
|
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcGPkzFaSGd1q/oy/uP5zEoOuPNr1h17ifu7oj4DaYO root@warsaw-ovh-01''
|
|
|
|
];
|
2024-11-21 00:37:07 +01:00
|
|
|
# Allow root login, but only with SSH keys
|
|
|
|
services.openssh.settings.PermitRootLogin = lib.mkForce "prohibit-password";
|
2023-12-19 03:17:00 +01:00
|
|
|
|
|
|
|
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 = "America/Los_Angeles";
|
|
|
|
|
|
|
|
# Set the networking hostname:
|
|
|
|
networking.hostName = "nuc-server";
|
2024-11-20 23:03:31 +01:00
|
|
|
# networking.firewall.allowedTCPPorts = [ 22 ];
|
2024-01-12 08:46:52 +01:00
|
|
|
|
2023-12-19 03:17:00 +01:00
|
|
|
services.tailscale.extraUpFlags = [
|
|
|
|
"--advertise-exit-node"
|
2024-10-25 03:33:06 +02:00
|
|
|
"--advertise-routes=192.168.1.13/32,192.168.1.14/32,192.168.1.15/32,192.168.1.100/32,192.168.1.31/32"
|
2023-12-19 03:17:00 +01:00
|
|
|
];
|
|
|
|
}
|