nix-config/hardware/configuration-dell-wyse-3040.nix

11 lines
348 B
Nix
Raw Normal View History

2022-04-30 23:41:24 +02:00
{ config, pkgs, inputs, ... }:
{
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour.
networking.useDHCP = false;
networking.interfaces.enp1s0.useDHCP = true;
boot.tmpOnTmpfsSize = "4%";
2022-04-30 23:41:24 +02:00
}