Added ssh flag to nixos machines

This commit is contained in:
Gene Liverman 2023-12-13 19:10:52 -05:00
parent 59283b5b4a
commit 8d4f72c917

View file

@ -18,7 +18,12 @@ in {
hostName = "${hostname}";
networkmanager.enable = true;
};
services.tailscale.enable = true;
services.tailscale = {
enable = true;
extraUpFlags = [
"--ssh"
];
};
time.timeZone = "America/New_York";