9 lines
201 B
Nix
9 lines
201 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let meta = import ../../meta;
|
|
in {
|
|
networking.hostName = "lindberg"; # TODO: Extract into meta
|
|
|
|
networking.useDHCP = false;
|
|
networking.interfaces.enp5s0.useDHCP = true;
|
|
}
|