flakes/hosts/sugarcane/networking.nix

12 lines
182 B
Nix
Raw Normal View History

2022-02-02 16:05:17 +07:00
{ config, ... }: {
networking = {
useDHCP = false;
interfaces.ens3.useDHCP = true;
2022-02-02 18:07:39 +07:00
extraHosts = ''
10.100.0.3 blossom
10.100.0.4 strawberry
'';
2022-02-02 16:05:17 +07:00
};
}