infra/krops/glasgow/configuration.nix

108 lines
2.4 KiB
Nix
Raw Normal View History

2023-06-26 15:25:26 +01:00
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware.nix
];
boot = {
2023-07-30 22:39:00 +01:00
supportedFilesystems = [ "nfs" ];
2023-07-27 21:59:37 +01:00
kernelPackages = pkgs.linuxPackages_rpi4;
2023-08-06 00:03:44 +01:00
kernelParams = [ "cgroup_enable=memory" "cgroup_enable=cpuset" "cgroup_memory=1" ];
2023-06-26 15:25:26 +01:00
loader = {
grub.enable = false;
2023-07-30 22:39:00 +01:00
generic-extlinux-compatible.enable = true;
2023-06-26 15:25:26 +01:00
};
};
2023-07-27 21:59:37 +01:00
swapDevices = [
{
device = "/var/lib/swapfile";
size = 8*1024;
}
];
2023-06-26 15:25:26 +01:00
nix = {
settings = {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
# Free up to 1GiB whenever there is less than 100MiB left.
extraOptions = ''
min-free = ${toString (100 * 1024 * 1024)}
max-free = ${toString (1024 * 1024 * 1024)}
'';
};
networking = {
2023-07-27 21:59:37 +01:00
hostName = "glasgow";
2023-06-26 15:25:26 +01:00
domain = "gmem.ca";
firewall = {
trustedInterfaces = ["tailscale0"];
checkReversePath = "loose";
2023-08-06 00:04:21 +01:00
allowedUDPPorts = [ 41641 ];
allowedTCPPorts = [ 22 53 80 443 ];
enable = true;
2023-06-26 15:25:26 +01:00
};
nftables.enable = true;
};
time.timeZone = "Europe/London";
users.users.gsimmer = {
isNormalUser = true;
extraGroups = [ "wheel" ];
packages = with pkgs; [
tree
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILIztwQxt+jqroFONSgq+xzPMuE2I5Dq/zWPQ8RcTYJr"
"sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAICCc6k8tl2ahB3HtjpGK403Wkk+nQKgIhSgdBXxmXdsEAAAABHNzaDo="
"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMO7u+6hBN3XJfRFZCxADyLJfI8zGO2pj9AxkF0FecSR8GFuzP77wyUzmHosQcxe/P/N1TeNdfIDCatogqft9w4="
];
};
environment.systemPackages = with pkgs; [
vim
wget
htop
git
screen
nix-output-monitor
tailscale
nfs-utils
libraspberrypi
];
services = {
2023-07-30 22:39:00 +01:00
rpcbind.enable = true;
2023-06-26 15:25:26 +01:00
openssh.enable = true;
tailscale.enable = true;
k3s = {
enable = true;
role = "agent";
2023-07-27 21:59:37 +01:00
serverAddr = "https://100.77.43.133:6443";
token = "";
2023-06-26 15:25:26 +01:00
};
};
hardware = {
bluetooth = {
enable = true;
powerOnBoot = true;
};
};
system.copySystemConfiguration = true;
system.stateVersion = "23.11"; # dId YoU rEaD tHe CoMmEnT?
}