nixos-config/configuration.nix

171 lines
5.5 KiB
Nix
Raw Normal View History

2024-02-27 04:50:33 +00:00
# Edit this configuration file to define what should be installed on
#your system. Help is available in the configuration.nix(5) man page, on
2024-02-27 04:50:33 +00:00
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, ... }:
{
2024-03-05 09:16:28 +00:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
sops.age.keyFile = "/secrets/age/keys.txt";
2024-02-27 04:50:33 +00:00
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
2024-03-05 09:16:28 +00:00
./users/users.nix
./services/gitea.nix
./services/duckddns.nix
2024-02-27 04:50:33 +00:00
];
2024-02-27 04:51:16 +00:00
2024-02-27 04:50:33 +00:00
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-03-05 09:16:28 +00:00
# set hostname
networking.hostName = "rackserver";
# fix nixpkgs warning
nix.nixPath = [
"nixpkgs=${pkgs.path}"
];
2024-02-27 04:50:33 +00:00
2024-03-07 05:34:47 +00:00
# ACME
security.acme = {
acceptTerms = true;
defaults.email = "sky.hearn@pm.me";
};
2024-03-04 00:17:28 +00:00
# wireguard server setup
# enable NAT
networking.nat.enable = true;
2024-03-07 02:41:55 +00:00
networking.nat.externalInterface = "eno4";
2024-03-04 00:17:28 +00:00
networking.nat.internalInterfaces = [ "wg0" ];
networking.firewall = {
allowedUDPPorts = [ 51820 ];
};
2024-02-27 04:51:16 +00:00
2024-03-04 00:17:28 +00:00
networking.wireguard.interfaces = {
# "wg0" is the network interface name. You can name the interface arbitrarily.
wg0 = {
# Determines the IP address and subnet of the server's end of the tunnel interface.
ips = [ "10.100.0.1/24" ];
# The port that WireGuard listens to. Must be accessible by the client.
listenPort = 51820;
# This allows the wireguard server to route your traffic to the internet and hence be like a VPN
# For this to work you have to set the dnsserver IP of your router (or dnsserver of choice) in your clients
postSetup = ''
2024-03-07 02:41:55 +00:00
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.100.0.0/24 -o eno4 -j MASQUERADE
2024-03-04 00:17:28 +00:00
'';
# This undoes the above command
postShutdown = ''
2024-03-07 02:41:55 +00:00
${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -s 10.100.0.0/24 -o eno4 -j MASQUERADE
2024-03-04 00:17:28 +00:00
'';
# Path to the private key file.
#
# Note: The private key can also be included inline via the privateKey option,
# but this makes the private key world-readable; thus, using privateKeyFile is
# recommended.
2024-03-07 02:41:55 +00:00
privateKeyFile = "/run/keys/wg-privatekey"; # TODO: Change this to be a sops secret
2024-03-04 00:17:28 +00:00
peers = [
# List of allowed peers.
2024-03-05 09:16:28 +00:00
{ #nub
2024-03-04 00:17:28 +00:00
# Public key of the peer (not a file path).
2024-03-05 09:16:28 +00:00
publicKey = "L4msD0mEG2ctKDtaMJW2y3cs1fT2LBRVV7iVlWZ2nZc=";
2024-03-04 00:17:28 +00:00
# List of IPs assigned to this peer within the tunnel subnet. Used to configure routing.
2024-03-05 09:16:28 +00:00
allowedIPs = [ "10.100.0.2/32" ];
}
{ # ku
publicKey = "L4msD0mEG2ctKDtaMJW2y3cs1fT2LBRVV7iVlWZ2nZc=";
allowedIPs = [ "10.100.0.3/32" ];
}
{ # skyLaptop
2024-03-07 02:41:55 +00:00
publicKey = "2sg0sgMMGQrCGt0f/5+1kO/B0Ghfb137DTf9nYctZTM=";
2024-03-05 09:16:28 +00:00
allowedIPs = [ "10.100.0.4/32" ];
}
{ # skyDesktop
publicKey = "36tqEexZ8e6ks+qjDpnMzUY9LAJvFvVDe6MLzR9vtEo=";
2024-03-04 00:17:28 +00:00
allowedIPs = [ "10.100.0.5/32" ];
2024-03-05 09:16:28 +00:00
}
2024-03-04 00:17:28 +00:00
];
2024-02-27 04:51:16 +00:00
};
2024-03-01 22:39:20 +00:00
};
2024-03-05 09:16:28 +00:00
# arion setup
virtualisation.podman.enable = true;
virtualisation.podman.dockerSocket.enable = true;
2024-03-05 09:16:28 +00:00
virtualisation.podman.defaultNetwork.settings.dns_enabled = true;
environment.systemPackages = [
pkgs.bash
2024-03-05 09:16:28 +00:00
pkgs.wget
pkgs.curl
pkgs.vim
pkgs.arion
# Do install the docker CLI to talk to podman.
# Not needed when virtualisation.docker.enable = true;
pkgs.docker-client
];
2024-02-27 04:51:16 +00:00
# List services that you want to enable:
2024-03-05 09:16:28 +00:00
networking.firewall.allowedTCPPorts = [ 80 443 22 ];
2024-03-05 09:16:28 +00:00
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
};
services.postgresql = {
enable = true;
};
2024-02-27 04:50:33 +00:00
# Enable the OpenSSH daemon.
2024-03-04 00:17:28 +00:00
services.openssh = {
enable = true;
settings = {
# Forbid root login through SSH.
PermitRootLogin = "no";
# key authentication
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
2024-03-04 00:17:28 +00:00
};
};
2024-02-27 04:50:33 +00:00
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
# This option defines the first version of NixOS you have installed on this particular machine,
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
#
# Most users should NEVER change this value after the initial install, for any reason,
# even if you've upgraded your system to a new NixOS release.
#
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
# so changing it will NOT upgrade your system.
#
# This value being lower than the current NixOS release does NOT mean your system is
# out of date, out of support, or vulnerable.
#
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
# and migrated your data accordingly.
#
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "23.11"; # Did you read the comment?
}