feat: yggdrasil

This commit is contained in:
Sweetbread 2025-04-08 16:48:13 +03:00
parent d524383340
commit 56add43822
2 changed files with 12 additions and 0 deletions

View File

@ -14,6 +14,7 @@
./host/virtmanager.nix ./host/virtmanager.nix
./host/vpn.nix ./host/vpn.nix
./host/network.nix ./host/network.nix
./host/yggdrasil.nix
]; ];
programs.hyprland.enable = true; programs.hyprland.enable = true;

View File

@ -0,0 +1,11 @@
{
services.yggdrasil = {
enable = true;
persistentKeys = true;
settings = {
Peers = [
"tcp://codrs.ru:5001"
];
};
};
}