nix-config/hosts/leon/default.nix

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

219 lines
6.9 KiB
Nix
Raw Normal View History

2022-10-01 22:18:20 +02:00
# .--.
2022-08-25 23:38:52 +02:00
# `. \
# \ \
# . \
# : .
# | .
# | :
# | |
# ..._ ___ | |
# `."".`''''""--..___ | |
# ,-\ \ ""-...__ _____________/ |
# / ` " ' `"""""""" .
# \ L
# (> \
#/ \
#\_ ___..---. MEOW OS \
# `--' '. \
# . \_
# _/`. `.._
# .' -. `.
# / __.-Y /''''''-...___,...--------.._ |
# / _." | / ' . \ '---..._ |
# / / / / _,. ' ,/ | |
# \_,' _.' / /'' _,-' _| |
# ' / `-----'' / |
# `...-' `...-'
#--------------------------------------------------------------------------------
2023-04-22 23:03:14 +02:00
{ lib, pkgs, ssh-public-keys, ... }:
2022-06-01 20:46:47 +02:00
{
2023-02-23 00:58:35 +01:00
deployment = {
2022-06-01 20:56:55 +02:00
mem = 2048;
vcpu = 4;
};
nix.settings.auto-optimise-store = lib.mkForce false;
2022-06-01 20:46:47 +02:00
networking = {
hostName = "leon";
firewall.enable = 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; [
wget vim python3Full python310Packages.pip python310Packages.flask nmap htop wireguard-tools docker-compose
2022-08-07 03:47:42 +02:00
];
2022-10-02 23:29:45 +02:00
virtualisation.docker.enable = true;
2022-06-01 20:46:47 +02:00
users.users.leon = {
isNormalUser = true;
2022-10-02 23:29:45 +02:00
extraGroups = [ "wheel" "docker" ];
2022-06-01 20:46:47 +02:00
createHome = true;
2023-07-02 22:07:39 +02:00
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJPZoT83l0ogbJpviBs4VmO+NdF4NPtYAnyf8RRSoXsv leon@leon"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIANupx+diz5N8sGZOc7ZXopyPh9HaML8M7Qh70aVVIaJ leon@leons-Air"
];
2022-06-01 20:46:47 +02:00
};
2022-11-22 21:32:38 +01:00
networking.nameservers = ["172.20.73.8" "9.9.9.9"];
2022-08-20 17:22:11 +02:00
networking.firewall = {
2022-11-21 02:34:43 +01:00
allowedTCPPorts = [ 5000 22 53 80 443 8080 12000 ];
2022-11-22 13:09:51 +01:00
allowedUDPPorts = [ 53 80 8080 18900 19900 ];
2022-06-01 20:46:47 +02:00
};
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-09-25 21:10:44 +02:00
privateKeyFile = "/etc/wireguard/privatekey";
2022-08-24 05:47:49 +02:00
#----------------------Start-Routing----------------------------
postSetup = ''
2022-09-18 21:39:16 +02:00
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.10.11.1/24 -o flpk -j MASQUERADE
2022-08-24 05:47:49 +02:00
'';
# This undoes the above command
postShutdown = ''
2022-09-18 21:39:16 +02:00
${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -s 10.10.11.1/24 -o flpk -j MASQUERADE
2022-08-24 05:47:49 +02:00
'';
#----------------------End-Routing----------------------------
2022-09-25 21:10:44 +02:00
peers = [
2022-10-02 23:29:45 +02:00
# ------------------leon-------------------------.
2022-11-04 03:02:55 +01:00
{
#leon-Mac
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
}
{
2022-11-04 03:02:55 +01:00
#leon-Phone
2022-09-02 21:25:18 +02:00
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-11-04 03:02:55 +01:00
{
#leoncloud-vm
publicKey = "YhcC/xMYxh7GIyndbgBZ05oE3aTJXK4T7JgZwUDyd08=";
allowedIPs = [ "10.10.11.4" ];
}
{
#leon-Pi
publicKey = "TzAImxyt2by5BfCR79U5giD4rzPrUrtWWy2IvXVF+ik=";
allowedIPs = [ "10.10.11.6" ];
2022-11-09 22:39:17 +01:00
}
{
#leon-windows
publicKey = "djNLXtdgDAD2P/14EHXG8bjcHkKvPflNZhEHq5AEcgU=";
allowedIPs = [ "10.10.11.12" ];
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-10-05 21:56:47 +02:00
{
#Gecol-docker
publicKey= "DiA9FKxMDziCt4sEsINIdc8RlM1hq9fA4LVwf062mAE=";
allowedIPs = [ "10.10.11.62" ];
2022-11-12 19:22:42 +01:00
}
{
#Acer-laptop
publicKey= "+/neUKXEHkLv+zYGw37+ckwoT3kHQIHyHRTbCtjUUA4=";
allowedIPs = [ "10.10.11.63" ];
2022-10-05 21:56:47 +02:00
}
2023-03-29 01:50:40 +02:00
{
#zeo-vm
publicKey= "aUoH+Ukmsrk4zsQj5LX/VeuXMjgTTHZ98voy6zvNf14=";
allowedIPs = [ "10.10.11.66" ];
2022-10-01 22:09:08 +02:00
}
2023-03-29 01:50:40 +02:00
2023-02-25 18:56:42 +01:00
#---------------------M-dev---------------------------.
{
#M-dev-pc
publicKey= "l63JSZVnqWgFvKol+MlXWPnPjwq3b0L8gVkOzQz/F3k=";
allowedIPs = [ "10.10.11.21" ];
}
2023-03-29 01:50:40 +02:00
#---------------------Malak-pc---------------------------.
{
#malak-pc
publicKey= "H5mMm7EblaSjEKLkKEn8575XeKWFgs/7LjEIpBwJ0HU=";
allowedIPs = [ "10.10.11.33" ];
}
#---------------------Ameria-pc---------------------------.
{
#amira-pc
publicKey= "uJYIR+BFdOauVY/wrohpufOl9ZxmQ1CbDNUVHnz0+Uc=";
allowedIPs = [ "10.10.11.31" ];
}
2023-02-25 18:56:42 +01:00
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
2022-08-24 05:47:49 +02:00
#-----------------------------END-VPN---------------------------------
2022-08-25 23:38:52 +02:00
2022-11-13 01:31:43 +01:00
#-----------------------------ngin-X--------------------------------
2022-11-22 19:30:32 +01:00
services.nginx = {
enable = true;
virtualHosts."bicospacetech.c3d2.de" = {
2022-11-22 21:43:42 +01:00
forceSSL = true;
2022-11-22 19:30:32 +01:00
enableACME = true;
locations."/" = {
proxyPass = "http://45.158.40.162:12000";
proxyWebsockets = true;
};
};
2022-11-26 18:34:22 +01:00
virtualHosts."bicospacetech.cloud.c3d2.de" = {
2022-11-22 22:34:16 +01:00
forceSSL = true;
enableACME = true;
2022-11-24 03:00:27 +01:00
locations."/" = {
proxyPass = "http://45.158.40.165:80";
proxyWebsockets = true;
2022-12-07 19:10:21 +01:00
};
};
virtualHosts."bicospacetech.stream.c3d2.de" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://10.10.11.4:14500";
proxyWebsockets = true;
2022-11-22 22:34:16 +01:00
};
2022-11-23 00:28:41 +01:00
};
2022-11-23 19:33:24 +01:00
virtualHosts."portainer.netlab.c3d2.de" = {
2022-11-23 00:51:09 +01:00
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://10.10.11.60:9000";
proxyWebsockets = true;
};
};
2023-05-23 19:31:36 +02:00
2022-11-22 19:30:32 +01:00
};
2022-11-13 01:31:43 +01:00
#-----------------------------ngin-X--------------------------------
2022-08-25 23:38:52 +02:00
system.stateVersion = "22.05";
2022-11-23 00:28:41 +01:00
2022-11-23 00:31:39 +01:00
}