Compare commits

..

3 commits

4 changed files with 8 additions and 14 deletions

View file

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

View file

@ -48,9 +48,5 @@
programs.extra-container.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"
"vboxusers"
"input"
"libvirtd"
"kvm"
];
shell = pkgs.fish;
openssh.authorizedKeys.keys = [

View file

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