add tailscale

This commit is contained in:
wo2wz 2025-08-03 21:01:24 -04:00
parent 6b81b6daa1
commit 8a083f3c7e
3 changed files with 11 additions and 1 deletions

View file

@ -10,6 +10,7 @@
../../common/users.nix ../../common/users.nix
../../modules/nixos/bash.nix ../../modules/nixos/bash.nix
../../modules/nixos/tailscale.nix
]; ];
fileSystems = { fileSystems = {
@ -39,7 +40,9 @@
}; };
}; };
services.scx.scheduler = lib.mkForce "scx_rusty"; services = {
scx.scheduler = lib.mkForce "scx_rusty";
};
system.stateVersion = "25.05"; system.stateVersion = "25.05";
} }

View file

@ -2,9 +2,11 @@
{ {
imports = [ imports = [
./bash.nix
./gaming.nix ./gaming.nix
./kde.nix ./kde.nix
# ./niri.nix # ./niri.nix
./ssh.nix ./ssh.nix
./tailscale.nix
]; ];
} }

View file

@ -0,0 +1,5 @@
{ config, ... }:
{
services.tailscale.enable = true;
}