2024-01-12 08:43:50 +01:00
|
|
|
{ config, lib, pkgs, modulesPath, hostname, username, ... }: {
|
2023-12-05 05:27:06 +01:00
|
|
|
imports = [
|
2023-12-05 14:01:33 +01:00
|
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
2024-01-12 08:43:50 +01:00
|
|
|
../../common/services/tailscale-autoconnect.nix
|
2023-12-06 11:23:29 +01:00
|
|
|
./firewall.nix
|
2023-12-05 05:27:06 +01:00
|
|
|
./wireguard.nix
|
|
|
|
];
|
2023-12-05 14:01:33 +01:00
|
|
|
|
2023-12-13 03:56:02 +01:00
|
|
|
boot.initrd.availableKernelModules = [ "virtio_pci" "virtio_scsi" "ahci" "sd_mod" ];
|
2023-12-05 14:01:33 +01:00
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
2023-12-13 04:16:53 +01:00
|
|
|
# Enable LISH
|
|
|
|
boot.kernelParams = [ "console=ttyS0,19200n8" ];
|
|
|
|
boot.loader.grub.extraConfig = ''
|
|
|
|
serial --speed=19200 --unit=0 --word=8 --parity=no --stop=1;
|
|
|
|
terminal_input serial;
|
|
|
|
terminal_output serial
|
|
|
|
'';
|
|
|
|
|
|
|
|
boot.loader.grub.forceInstall = true;
|
|
|
|
boot.loader.grub.device = "nodev";
|
|
|
|
boot.loader.timeout = 10;
|
|
|
|
|
2023-12-05 14:01:33 +01:00
|
|
|
fileSystems."/" = {
|
|
|
|
device = "/dev/disk/by-label/nixos";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
|
|
|
swapDevices = [ { device = "/dev/disk/by-label/linode-swap"; } ];
|
2023-12-05 05:27:06 +01:00
|
|
|
|
|
|
|
# Distributed Builds
|
|
|
|
nix.distributedBuilds = true;
|
|
|
|
nixpkgs.config.allowUnfree = false;
|
|
|
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
time.timeZone = "Asia/Tokyo";
|
|
|
|
networking.hostName = "osaka-linode-01";
|
|
|
|
|
|
|
|
services.tailscale.extraUpFlags = [ "--advertise-exit-node" ];
|
|
|
|
}
|