nixos/networking.nix

10 lines
143 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;
};
};
}