Compare commits

...

2 Commits

Author SHA1 Message Date
77eabee8d8 Added yggdrasil + connected to VPS as peer + added Zathura 2026-01-31 16:46:36 +02:00
e86715ce40 removed thedesk bc it's ass 2026-01-28 14:04:52 +02:00
4 changed files with 25 additions and 1 deletions

View File

@@ -26,6 +26,7 @@
../../modules/common/libvirt.nix ../../modules/common/libvirt.nix
../../modules/common/keyd.nix ../../modules/common/keyd.nix
../../modules/common/unbound-cloud.nix ../../modules/common/unbound-cloud.nix
../../modules/common/yggdrasil.nix
]; ];
networking.hostName = "puter"; networking.hostName = "puter";
# This will be overridden by system/default.nix # This will be overridden by system/default.nix

View File

@@ -0,0 +1,23 @@
{ pkgs, ... }:
{
services.yggdrasil = {
enable = true;
persistentKeys = false;
# The NixOS module will generate new keys and a new IPv6 address each time
# it is started if persistentKeys is not enabled.
settings = {
Peers = [
# Yggdrasil will automatically connect and "peer" with other nodes it
# discovers via link-local multicast announcements. Unless this is the
# case (it probably isn't) a node needs peers within the existing
# network that it can tunnel to.
#"tcp://185.165.169.234:8880"
#"tls://185.165.169.234:8443"
"tcp://10.0.0.1:4242"
# Public peers can be found at
# https://github.com/yggdrasil-network/public-peers
];
};
};
}

View File

@@ -14,6 +14,5 @@
librewolf librewolf
transmission_4-gtk transmission_4-gtk
bitwarden-desktop bitwarden-desktop
thedesk
]; ];
} }

View File

@@ -13,5 +13,6 @@
anki-bin anki-bin
pomodoro-gtk pomodoro-gtk
#ticker #ticker
zathura
]; ];
} }