about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--configuration.nix11
1 files changed, 10 insertions, 1 deletions
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
   ]; 
 }