mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-23 17:56:53 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
128 lines
3.3 KiB
Nix
128 lines
3.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.networkd-dispatcher;
|
|
|
|
in
|
|
{
|
|
|
|
options = {
|
|
services.networkd-dispatcher = {
|
|
|
|
enable = mkEnableOption ''
|
|
Networkd-dispatcher service for systemd-networkd connection status
|
|
change. See [upstream instructions](https://gitlab.com/craftyguy/networkd-dispatcher)
|
|
for usage
|
|
'';
|
|
|
|
rules = mkOption {
|
|
default = { };
|
|
example = lib.literalExpression ''
|
|
{ "restart-tor" = {
|
|
onState = ["routable" "off"];
|
|
script = '''
|
|
#!''${pkgs.runtimeShell}
|
|
if [[ $IFACE == "wlan0" && $AdministrativeState == "configured" ]]; then
|
|
echo "Restarting Tor ..."
|
|
systemctl restart tor
|
|
fi
|
|
exit 0
|
|
''';
|
|
};
|
|
};
|
|
'';
|
|
description = ''
|
|
Declarative configuration of networkd-dispatcher rules. See
|
|
[upstream instructions](https://gitlab.com/craftyguy/networkd-dispatcher)
|
|
for an introduction and example scripts.
|
|
'';
|
|
type = types.attrsOf (
|
|
types.submodule {
|
|
options = {
|
|
onState = mkOption {
|
|
type = types.listOf (
|
|
types.enum [
|
|
"routable"
|
|
"dormant"
|
|
"no-carrier"
|
|
"off"
|
|
"carrier"
|
|
"degraded"
|
|
"configuring"
|
|
"configured"
|
|
]
|
|
);
|
|
default = null;
|
|
description = ''
|
|
List of names of the systemd-networkd operational states which
|
|
should trigger the script. See <https://www.freedesktop.org/software/systemd/man/networkctl.html>
|
|
for a description of the specific state type.
|
|
'';
|
|
};
|
|
script = mkOption {
|
|
type = types.lines;
|
|
description = ''
|
|
Shell commands executed on specified operational states.
|
|
'';
|
|
};
|
|
};
|
|
}
|
|
);
|
|
};
|
|
|
|
extraArgs = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
description = ''
|
|
Extra arguments to pass to the networkd-dispatcher command.
|
|
'';
|
|
apply = escapeShellArgs;
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd = {
|
|
packages = [ pkgs.networkd-dispatcher ];
|
|
services.networkd-dispatcher = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
environment.networkd_dispatcher_args = cfg.extraArgs;
|
|
};
|
|
};
|
|
|
|
services.networkd-dispatcher.extraArgs =
|
|
let
|
|
scriptDir = pkgs.symlinkJoin {
|
|
name = "networkd-dispatcher-script-dir";
|
|
paths = lib.mapAttrsToList (
|
|
name: cfg:
|
|
(map (
|
|
state:
|
|
pkgs.writeTextFile {
|
|
inherit name;
|
|
text = cfg.script;
|
|
destination = "/${state}.d/${name}";
|
|
executable = true;
|
|
}
|
|
) cfg.onState)
|
|
) cfg.rules;
|
|
};
|
|
in
|
|
[
|
|
"--verbose"
|
|
"--script-dir"
|
|
"${scriptDir}"
|
|
];
|
|
|
|
};
|
|
}
|