From d355e877cd4cc20a6d5b97b1c4b5d85df93ce823 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Fri, 21 Jun 2024 17:12:04 +0200 Subject: [PATCH] change vscode-server, WOL --- vinzenz-pc2.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/vinzenz-pc2.nix b/vinzenz-pc2.nix index b942d3c..82b0dd6 100644 --- a/vinzenz-pc2.nix +++ b/vinzenz-pc2.nix @@ -39,11 +39,19 @@ port = 8542; host = "100.125.93.127"; # tailscale withoutConnectionToken = true; - extraPackages = with pkgs; [nodejs gitFull gh]; + extraPackages = with pkgs; [nodejs gitFull gh direnv]; }; - networking.firewall = { - allowedTCPPorts = [8542 8543 8544]; + virtualisation.podman = { + enable = true; + }; + + networking = { + firewall = { + allowedTCPPorts = [8542 8543 8544 80]; + }; + + interfaces.eno1.wakeOnLan.enable = true; }; }; }