2024-02-27 04:50:33 +00:00
|
|
|
# Edit this configuration file to define what should be installed on
|
2024-03-02 08:12:23 +00:00
|
|
|
#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, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
./hardware-configuration.nix
|
2024-03-04 00:17:28 +00:00
|
|
|
./users.nix
|
2024-02-27 04:51:16 +00:00
|
|
|
<home-manager/nixos>
|
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-04 00:17:28 +00:00
|
|
|
# use network manager and set hostname
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
networking.hostName = "rackserver";
|
2024-03-04 05:59:41 +00:00
|
|
|
|
|
|
|
|
2024-02-27 04:50:33 +00:00
|
|
|
|
2024-03-04 00:17:28 +00:00
|
|
|
# wireguard server setup
|
2024-02-27 04:50:33 +00:00
|
|
|
|
2024-03-04 00:17:28 +00:00
|
|
|
# enable NAT
|
|
|
|
networking.nat.enable = true;
|
|
|
|
networking.nat.externalInterface = "eth0";
|
|
|
|
networking.nat.internalInterfaces = [ "wg0" ];
|
|
|
|
networking.firewall = {
|
|
|
|
allowedUDPPorts = [ 51820 ];
|
2024-02-28 05:29:56 +00:00
|
|
|
};
|
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 = ''
|
|
|
|
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.100.0.0/24 -o eth0 -j MASQUERADE
|
|
|
|
'';
|
|
|
|
|
|
|
|
# This undoes the above command
|
|
|
|
postShutdown = ''
|
|
|
|
${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -s 10.100.0.0/24 -o eth0 -j MASQUERADE
|
|
|
|
'';
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
privateKeyFile = "path to private key file";
|
|
|
|
|
|
|
|
peers = [
|
|
|
|
# List of allowed peers.
|
|
|
|
{ # Nub
|
|
|
|
# Public key of the peer (not a file path).
|
|
|
|
publicKey = "{}";
|
|
|
|
# List of IPs assigned to this peer within the tunnel subnet. Used to configure routing.
|
|
|
|
allowedIPs = [ "10.100.0.2/32" ];
|
|
|
|
}
|
|
|
|
{ # Ku
|
|
|
|
publicKey = "{}";
|
|
|
|
allowedIPs = [ "10.100.0.3/32" ];
|
|
|
|
}
|
|
|
|
{ # Sky Laptop
|
|
|
|
publicKey = "{}";
|
|
|
|
allowedIPs = [ "10.100.0.4/32" ];
|
|
|
|
}
|
|
|
|
{ # Sky Desktop
|
|
|
|
publicKey = "{}";
|
|
|
|
allowedIPs = [ "10.100.0.5/32" ];
|
|
|
|
}
|
|
|
|
];
|
2024-02-27 04:51:16 +00:00
|
|
|
};
|
2024-03-01 22:39:20 +00:00
|
|
|
};
|
2024-03-01 22:06:19 +00:00
|
|
|
|
2024-03-04 05:59:41 +00:00
|
|
|
# arion setup
|
|
|
|
virtualisation.podman.enable = true;
|
|
|
|
virtualisation.podman.dockerSocket.enable = true;
|
|
|
|
virtualisation.podman.defaultNetwork.dnsname.enable = true;
|
|
|
|
|
|
|
|
{ pkgs, ... }: {
|
|
|
|
environment.systemPackages = [
|
|
|
|
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-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;
|
|
|
|
};
|
|
|
|
};
|
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?
|
|
|
|
}
|