nix-config/machines/nat/configuration.nix
2023-03-18 20:41:09 -06:00

16 lines
246 B
Nix

{ config, pkgs, fetchurl, lib, ... }:
{
imports = [
./hardware-configuration.nix
];
efi.enable = true;
networking.hostName = "nat";
networking.interfaces.ens160.useDHCP = true;
de.enable = true;
de.touchpad.enable = true;
}