From bac7bcb3a41a029ce0e94c1182dc75172d14e52d Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Thu, 9 Jan 2025 08:39:28 -0500 Subject: [PATCH] wsl tweaks --- nixos/machines/wsl/configuration.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/nixos/machines/wsl/configuration.nix b/nixos/machines/wsl/configuration.nix index 9857734..a79c28d 100644 --- a/nixos/machines/wsl/configuration.nix +++ b/nixos/machines/wsl/configuration.nix @@ -41,15 +41,19 @@ wsl.enable = true; wsl.defaultUser = "nathan"; + services.openssh.enable = true; + + services.tailscale.enable = true; + + nix.settings.system-features = ["x86_64-linux"]; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; - environment.systemPackages = - with pkgs; - [ - ]; + environment.systemPackages = with pkgs; [ + ]; time.timeZone = "America/Kentucky/Louisville";