Files
nixos/modules/core/networking.nix
2026-02-04 22:53:00 +01:00

17 lines
253 B
Nix

# modules/core/networking.nix
# Network configuration and services
{
config,
pkgs,
lib,
...
}:
{
networking.hostName = "nix";
networking.networkmanager.enable = true;
services.openssh.enable = true;
services.tailscale.enable = true;
}