Format the entire project.
This commit is contained in:
parent
1dc50ae17d
commit
6f9db5e3a4
115 changed files with 3451 additions and 2901 deletions
|
@ -1,10 +1,11 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
networkD = config.machine.networkD;
|
||||
in{
|
||||
in {
|
||||
networking = {
|
||||
hostName = config.machine.hostName;
|
||||
useNetworkd = networkD.enable;
|
||||
|
@ -20,7 +21,7 @@ in{
|
|||
DHCP = "yes";
|
||||
DNSSEC = "yes";
|
||||
DNSOverTLS = "yes";
|
||||
DNS = [ "1.1.1.1" "1.0.0.1" ];
|
||||
DNS = ["1.1.1.1" "1.0.0.1"];
|
||||
};
|
||||
in {
|
||||
"40-wired" = {
|
||||
|
@ -58,7 +59,8 @@ in{
|
|||
systemd.services."systemd-networkd-wait-online" = {
|
||||
enable = mkForce networkD.waitOnline;
|
||||
serviceConfig.ExecStart = [
|
||||
"" "${config.systemd.package}/lib/systemd/systemd-networkd-wait-online --any"
|
||||
""
|
||||
"${config.systemd.package}/lib/systemd/systemd-networkd-wait-online --any"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue