nix-config/hosts/leon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

250 lines
7.4 KiB
Nix
Raw Normal View History

2022-08-25 23:38:52 +02:00
# .--.
# `. \
# \ \
# . \
# : .
# | .
# | :
# | |
# ..._ ___ | |
# `."".`''''""--..___ | |
# ,-\ \ ""-...__ _____________/ |
# / ` " ' `"""""""" .
# \ L
# (> \
#/ \
#\_ ___..---. MEOW OS \
# `--' '. \
# . \_
# _/`. `.._
# .' -. `.
# / __.-Y /''''''-...___,...--------.._ |
# / _." | / ' . \ '---..._ |
# / / / / _,. ' ,/ | |
# \_,' _.' / /'' _,-' _| |
# ' / `-----'' / |
# `...-' `...-'
#--------------------------------------------------------------------------------
2022-06-01 20:46:47 +02:00
{ zentralwerk, config, pkgs, ... }:
let
netConfig = zentralwerk.lib.config.site.net.serv;
2022-08-25 22:04:22 +02:00
mac = {
serv = "e2:e9:bb:f4:49:fe";
pub = "e2:e9:bb:f4:49:ff";
};
2022-06-01 20:46:47 +02:00
in
{
microvm = {
2022-06-01 20:56:55 +02:00
mem = 2048;
};
2022-06-01 20:46:47 +02:00
c3d2.deployment = {
server = "nomad";
mounts = [ "etc" "home" "var"];
2022-07-07 01:21:39 +02:00
mountBase = "/glusterfs/fast/microvms/${config.networking.hostName}";
2022-08-25 22:04:22 +02:00
autoNetSetup = false;
2022-06-01 20:46:47 +02:00
};
2022-08-25 22:04:22 +02:00
microvm.interfaces = [ {
type = "tap";
id = "pub-leon";
mac = mac.pub;
} {
type = "tap";
id = "serv-leon";
mac = mac.serv;
} ];
2022-06-01 20:46:47 +02:00
networking = {
hostName = "leon";
firewall.enable = true;
};
2022-08-25 22:04:22 +02:00
systemd.network = {
enable = true;
# On the serv network I have a static IPv4 and only a route to the
# rest of the network so that I am reachable by
# public-access-proxy.
links."00-serv" = {
matchConfig.MACAddress = mac.serv;
linkConfig.Name = "serv";
};
networks."00-serv" = {
matchConfig.MACAddress = mac.serv;
networkConfig.IPv6AcceptRA = false;
# try harder disabling global ipv6
networkConfig.LinkLocalAddressing = "no";
addresses = [ {
2022-09-05 22:17:11 +02:00
addressConfig.Address = "${config.c3d2.hosts.${config.networking.hostName}.ip4}/${toString zentralwerk.lib.config.site.net.serv.subnet4Len}";
2022-08-25 22:04:22 +02:00
} ];
routes = [ {
routeConfig = {
Destination = "172.20.0.0/14";
Gateway = config.c3d2.hosts.serv-gw.ip4;
};
} ];
};
# On the pub network I am a normal client.
links."00-pub" = {
matchConfig.MACAddress = mac.pub;
linkConfig.Name = "pub";
};
networks."01-pub" = {
matchConfig.MACAddress = mac.pub;
networkConfig.DHCP = "ipv4";
networkConfig.IPv6AcceptRA = true;
};
};
2022-08-31 19:50:48 +02:00
# enable IP routing
boot.kernel.sysctl."net.ipv4.conf.all.forwarding" = 1;
boot.kernel.sysctl."net.ipv4.conf.default.forwarding" = 1;
2022-06-01 20:46:47 +02:00
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
2022-08-31 20:10:40 +02:00
c3d2.hq.statistics.enable = true;
2022-08-20 04:24:53 +02:00
2022-08-31 20:10:40 +02:00
# List packages installed in system profile. To search, run:
2022-08-07 03:47:42 +02:00
# $ nix search wget
2022-08-31 20:10:40 +02:00
environment.systemPackages = with pkgs; [
2022-08-20 04:24:53 +02:00
wget vim python3Full nmap htop wireguard-tools
2022-08-07 03:47:42 +02:00
];
2022-06-01 20:46:47 +02:00
users.users.leon = {
isNormalUser = true;
extraGroups = [ "wheel" ];
createHome = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM2zpmWA3Z9zshWaU8k1SWyJnbAyasOu9pV+9BvTY0XE leon@¯\_()_/¯"
];
2022-06-01 20:46:47 +02:00
};
2022-08-20 17:22:11 +02:00
networking.firewall = {
2022-08-25 23:38:52 +02:00
allowedTCPPorts = [ 5000 22 53 80 8080 ];
2022-08-28 01:43:10 +02:00
allowedUDPPorts = [ 5000 22 53 80 8080 18900 19900 ];
2022-06-01 20:46:47 +02:00
};
2022-08-20 04:24:53 +02:00
2022-08-24 05:47:49 +02:00
#-------------------------------VPN---------------------------------
# enable NAT
# networking.nat.enable = true;
# networking.nat.externalInterface = "eth0";
# networking.nat.internalInterfaces = [ "wg0" ];
# networking.firewall = {
# allowedUDPPorts = [ 51820 ];
# };
2022-08-25 23:38:52 +02:00
#_______________________________Begin-VPN1-Server____________________________________
2022-08-24 05:47:49 +02:00
networking.wireguard.interfaces = {
2022-08-25 23:38:52 +02:00
#Interface. Trusted VPN
2022-08-24 05:47:49 +02:00
vpn1 = {
#IP address && Subnet.
ips = [ "10.10.11.1/24" ];
#VPN Port.
2022-08-28 01:43:10 +02:00
listenPort = 18900;
2022-08-24 05:47:49 +02:00
# 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
#----------------------Start-Routing----------------------------
postSetup = ''
2022-08-26 00:32:04 +02:00
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.10.11.1/24 -o pub -j MASQUERADE
2022-08-24 05:47:49 +02:00
'';
# This undoes the above command
postShutdown = ''
2022-08-26 00:32:04 +02:00
${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -s 10.10.11.1/24 -o pub -j MASQUERADE
2022-08-24 05:47:49 +02:00
'';
#----------------------End-Routing----------------------------
# 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.
2022-08-25 02:44:31 +02:00
privateKeyFile = "/etc/wireguard/privatekey";
2022-08-24 05:47:49 +02:00
peers = [
2022-09-02 21:25:18 +02:00
# ------------------leon-------------------------.
2022-08-25 02:44:31 +02:00
{
2022-09-02 20:58:49 +02:00
#My_laptop
2022-09-02 21:25:18 +02:00
publicKey = "okZuIQ90J49IJ3s+/dZyLthvo4rR2kclmTL54Ykglio=";
2022-09-02 21:52:02 +02:00
allowedIPs = [ "10.10.11.2" ];
2022-09-02 21:25:18 +02:00
}
{
#Myphone
publicKey= "OKv8k1ctlcYN9du/lWA65E0+nMpYOhUR8jf+rfQS+BY=";
2022-09-02 21:52:02 +02:00
allowedIPs = [ "10.10.11.3" ];
2022-09-02 20:49:25 +02:00
}
2022-09-02 21:25:18 +02:00
#-------------------<<B>>--------------------------.
{
#B-Mobile
publicKey= "mYnyJZkJ66vqJ5IyN3jmdhoCjuXIfb21c4exN77dVg0=";
2022-09-02 21:52:02 +02:00
allowedIPs = [ "10.10.11.50" ];
2022-09-02 21:25:18 +02:00
}
{
#B-laptop
publicKey= "L2cXR9jXJZIqjwffqm11j3qpm5a+wz3+wlDkkzNNs08=";
2022-09-02 21:52:02 +02:00
allowedIPs = [ "10.10.11.51" ];
2022-09-02 21:25:18 +02:00
}
#-------------------Killow---------------------------.
{
#Killow-Server1
publicKey= "sg2U9isTU7fFj9dv8lFepbg1EE4s7RissF6ZCZf2cGs=";
2022-09-02 21:52:02 +02:00
allowedIPs = [ "10.10.11.60" ];
2022-09-02 21:25:18 +02:00
}
{
#Killow-Server2
publicKey= "tNWJ8FFydI08Ls/faHU1mp0Uf1ZLzZke66DpL6ffoHY=";
2022-09-02 21:52:02 +02:00
allowedIPs = [ "10.10.11.61" ];
2022-09-02 21:28:01 +02:00
}
];
2022-08-24 05:47:49 +02:00
};
2022-09-02 20:58:49 +02:00
};
#-----------------------------END-VPN---------------------------------
2022-08-25 23:38:52 +02:00
#__________________________Begin-VPN2-Server_____________________
networking.wireguard.interfaces = {
#Interface. Untrusted VPN
vpn2 = {
#IP address && Subnet.
ips = [ "10.10.100.1/24" ];
#VPN Port.
2022-08-28 01:43:10 +02:00
listenPort = 19900;
2022-08-25 23:38:52 +02:00
2022-08-27 23:03:10 +02:00
# Path to the private key file.
2022-08-25 23:38:52 +02:00
#
privateKeyFile = "/etc/wireguard/privatekey";
2022-08-24 05:47:49 +02:00
2022-08-25 23:38:52 +02:00
peers = [
# -----------------leon-Mac-------------------------.
{
publicKey = "6GRIp7SjHyu5sgqudtgZdN9CKbV3GYtMnwgo06F4ylo=";
allowedIPs = [ "10.10.100.0/24" ];
}
];
};
};
2022-08-24 05:47:49 +02:00
#-----------------------------END-VPN---------------------------------
2022-08-25 23:38:52 +02:00
system.stateVersion = "22.05";
2022-06-01 20:46:47 +02:00
}