nixos/systemd-resolved: Re-indent

This commit is contained in:
Will Fancher 2024-04-07 20:32:41 -04:00
parent d3cda6aed3
commit 146bffe5aa

View File

@ -128,7 +128,8 @@ in
}; };
config = mkIf cfg.enable { config = mkMerge [
(mkIf cfg.enable {
assertions = [ assertions = [
{ assertion = !config.networking.useHostResolvConf; { assertion = !config.networking.useHostResolvConf;
@ -180,6 +181,8 @@ in
networking.resolvconf.package = pkgs.systemd; networking.resolvconf.package = pkgs.systemd;
}; })
];
} }