nixos/networking.nix
MichaelFisher1997 8b064ceae9 networking
2024-08-29 12:09:20 +01:00

10 lines
143 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "hypr-nix";
networking = {
interfaces = {
enp0s31f6.useDHCP = true;
};
};
}