nixos/networking.nix

12 lines
180 B
Nix
Raw Normal View History

2024-08-29 12:09:20 +01:00
{ config, pkgs, ... }:
{
networking.hostName = "hypr-nix";
networking = {
interfaces = {
enp0s31f6.useDHCP = true;
};
};
2024-08-31 22:50:23 +01:00
services.tailscale.enable = true;
2024-08-29 12:09:20 +01:00
}