add tailscale

This commit is contained in:
RootHost-Stormwind
2025-01-13 01:13:13 +01:00
parent abdeb14b9b
commit e301367fc5
2 changed files with 11 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ in
(import "${home-manager}/nixos")
./user/stormwind/master.nix
./sshd.nix
./tailscale.nix
];
# This value determines the NixOS release from which the default

10
tailscale.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
# make the tailscale command usable to users
environment.systemPackages = [ pkgs.tailscale ];
# enable the tailscale service
services.tailscale.enable = true;
}