l: use networkd everywhere
This commit is contained in:
parent
7b6a5eb60d
commit
3ecc50fb63
@ -12,6 +12,7 @@ with import <stockholm/lib>;
|
||||
./wiregrill.nix
|
||||
./tmux.nix
|
||||
./tor-ssh.nix
|
||||
./networkd.nix
|
||||
{
|
||||
users.extraUsers =
|
||||
mapAttrs (_: h: { hashedPassword = h; })
|
||||
|
20
lass/2configs/networkd.nix
Normal file
20
lass/2configs/networkd.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
systemd.services.systemd-networkd-wait-online.enable = lib.mkForce false;
|
||||
systemd.services.systemd-networkd.stopIfChanged = false;
|
||||
# Services that are only restarted might be not able to resolve when resolved is stopped before
|
||||
systemd.services.systemd-resolved.stopIfChanged = false;
|
||||
|
||||
networking.useNetworkd = true;
|
||||
systemd.network = {
|
||||
enable = true;
|
||||
networks.wl0 = {
|
||||
matchConfig.Name = "wl0";
|
||||
DHCP = "yes";
|
||||
networkConfig = {
|
||||
IgnoreCarrierLoss = "3s";
|
||||
};
|
||||
dhcpV4Config.UseDNS = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user