60 lines
2 KiB
Nix
60 lines
2 KiB
Nix
{ hostname, inputs, config, lib, modulesPath, system, ... }:
|
|
let
|
|
ipAddress = "192.168.1.35";
|
|
gateway = "192.168.1.1";
|
|
netDev = "eno1";
|
|
in {
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
../../common/services/tailscale-autoconnect.nix
|
|
../../common/modules/secureboot.nix
|
|
# ../../common/modules/boot.nix
|
|
../../common/modules/ssh-luks.nix
|
|
../../common/services/docker.nix
|
|
./disks.nix
|
|
./mounts.nix
|
|
./cron.nix
|
|
./firewall.nix
|
|
];
|
|
|
|
boot.kernelParams = [ "ip=${ipAddress}::${gateway}:255.255.255.0:${hostname}:${netDev}:none" ];
|
|
networking = {
|
|
useDHCP = false;
|
|
interfaces.${netDev} = {
|
|
ipv4.addresses = [{
|
|
address = ipAddress;
|
|
prefixLength = 24;
|
|
}];
|
|
};
|
|
defaultGateway = gateway;
|
|
};
|
|
|
|
# Allow root login, but only with SSH keys
|
|
services.openssh.settings.PermitRootLogin = lib.mkForce "prohibit-password";
|
|
# 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''
|
|
];
|
|
|
|
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 ];
|
|
|
|
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 = hostname;
|
|
# networking.firewall.allowedTCPPorts = [ 22 ];
|
|
|
|
services.tailscale.extraUpFlags = [
|
|
"--advertise-exit-node"
|
|
"--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,192.168.1.99/32,192.168.1.0/24"
|
|
];
|
|
}
|