mirror of
https://github.com/MichaelFisher1997/nixos.git
synced 2025-04-26 22:23:10 +00:00
14 lines
211 B
Nix
14 lines
211 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
networking = {
|
|
hostName = "hypr-nix";
|
|
useDHCP = lib.mkDefault true;
|
|
|
|
interfaces = {
|
|
enp0s31f6.useDHCP = true;
|
|
};
|
|
};
|
|
|
|
services.tailscale.enable = true;
|
|
}
|