From 6cacef0e3f7732a2ad45065edb069ba7347b0fa5 Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 1 Oct 2023 13:35:05 +0200 Subject: Allow routing in Tailscale and add util packages --- configuration.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'configuration.nix') diff --git a/configuration.nix b/configuration.nix index 7a5684b..f9095a7 100644 --- a/configuration.nix +++ b/configuration.nix @@ -53,8 +53,11 @@ in PermitRootLogin = "no"; }; }; + tailscale = { + enable = true; + useRoutingFeatures = "client"; + }; nginx.enable = true; - tailscale.enable = true; }; virtualisation = { @@ -67,6 +70,7 @@ in programs = { fish.enable = true; git.enable = true; + tmux.enable = true; }; services.nginx.virtualHosts = { @@ -77,6 +81,11 @@ in environment.variables = { EDITOR = "vim"; }; environment.systemPackages = with pkgs; [ vim + + file + dig + inetutils + htop ]; } -- cgit 1.4.1