nix-config/hosts/server.nix

15 lines
187 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./common.nix
];
documentation.enable = false;
modules.networking.tailscale = {
enable = true;
restrictSSH = false;
};
}