mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 13:19:09 +02:00
13 lines
315 B
Nix
13 lines
315 B
Nix
{ lib, config, ... }:
|
|
{
|
|
networking = {
|
|
useDHCP = lib.mkForce false;
|
|
useNetworkd = true;
|
|
dhcpcd.enable = false;
|
|
renameInterfacesByMac = lib.mapAttrs (_: v: if (v ? mac) then v.mac else "") (
|
|
config.repo.secrets.local.networking.networks or { }
|
|
);
|
|
};
|
|
|
|
systemd.network.enable = true;
|
|
}
|