Compare commits

..

3 commits

4 changed files with 8 additions and 14 deletions

View file

@ -16,6 +16,8 @@ in
enable = true; enable = true;
isLighthouse = false; isLighthouse = false;
lighthouses = [ lighthouses = [
"192.168.88.1"
"192.168.88.2"
"192.168.88.3" "192.168.88.3"
]; ];
settings = { settings = {
@ -25,6 +27,12 @@ in
key = s."nebula-wopus-vpn/monolith-key".path; key = s."nebula-wopus-vpn/monolith-key".path;
ca = s."nebula-wopus-vpn/ca-crt".path; ca = s."nebula-wopus-vpn/ca-crt".path;
staticHostMap = { staticHostMap = {
"192.168.88.1" = [
"neubla-vpn.wopus.dev:4242"
];
"192.168.88.2" = [
"82.25.77.78:4242"
];
"192.168.88.3" = [ "192.168.88.3" = [
"72.60.60.221:4242" "72.60.60.221:4242"
]; ];

View file

@ -48,9 +48,5 @@
programs.extra-container.enable = true; programs.extra-container.enable = true;
programs.firejail.enable = true; programs.firejail.enable = true;
virtualisation.libvirtd.enable = true;
environment.systemPackages = with pkgs; [ dnsmasq ];
networking.firewall.trustedInterfaces = [ "virbr0" ];
}; };
} }

View file

@ -20,8 +20,6 @@
"corectrl" "corectrl"
"vboxusers" "vboxusers"
"input" "input"
"libvirtd"
"kvm"
]; ];
shell = pkgs.fish; shell = pkgs.fish;
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [

View file

@ -43,14 +43,6 @@ in
echo "Exported key $export[1]" echo "Exported key $export[1]"
end end
end end
function ssh
if test "$TERM" = "alacritty"
env TERM=xterm-256color ssh $argv
else
env ssh $argv
end
end
''; '';
shellAliases = { shellAliases = {
rm = "trash"; rm = "trash";