mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
nixos/networkd-dispatcher: init
This commit is contained in:
parent
ddb0eb521d
commit
553c376a49
@ -42,6 +42,8 @@ In addition to numerous new and upgraded packages, this release has the followin
|
|||||||
|
|
||||||
- [atuin](https://github.com/ellie/atuin), a sync server for shell history. Available as [services.atuin](#opt-services.atuin.enable).
|
- [atuin](https://github.com/ellie/atuin), a sync server for shell history. Available as [services.atuin](#opt-services.atuin.enable).
|
||||||
|
|
||||||
|
- [networkd-dispatcher](https://gitlab.com/craftyguy/networkd-dispatcher), a dispatcher service for systemd-networkd connection status changes. Available as [services.networkd-dispatcher](#opt-services.networkd-dispatcher.enable).
|
||||||
|
|
||||||
- [mmsd](https://gitlab.com/kop316/mmsd), a lower level daemon that transmits and recieves MMSes. Available as [services.mmsd](#opt-services.mmsd.enable).
|
- [mmsd](https://gitlab.com/kop316/mmsd), a lower level daemon that transmits and recieves MMSes. Available as [services.mmsd](#opt-services.mmsd.enable).
|
||||||
|
|
||||||
- [QDMR](https://dm3mat.darc.de/qdmr/), a GUI application and command line tool for programming DMR radios [programs.qdmr](#opt-programs.qdmr.enable)
|
- [QDMR](https://dm3mat.darc.de/qdmr/), a GUI application and command line tool for programming DMR radios [programs.qdmr](#opt-programs.qdmr.enable)
|
||||||
|
@ -912,6 +912,7 @@
|
|||||||
./services/networking/ndppd.nix
|
./services/networking/ndppd.nix
|
||||||
./services/networking/nebula.nix
|
./services/networking/nebula.nix
|
||||||
./services/networking/netbird.nix
|
./services/networking/netbird.nix
|
||||||
|
./services/networking/networkd-dispatcher.nix
|
||||||
./services/networking/networkmanager.nix
|
./services/networking/networkmanager.nix
|
||||||
./services/networking/nextdns.nix
|
./services/networking/nextdns.nix
|
||||||
./services/networking/nftables.nix
|
./services/networking/nftables.nix
|
||||||
|
63
nixos/modules/services/networking/networkd-dispatcher.nix
Normal file
63
nixos/modules/services/networking/networkd-dispatcher.nix
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.networkd-dispatcher;
|
||||||
|
in {
|
||||||
|
options = {
|
||||||
|
services.networkd-dispatcher = {
|
||||||
|
|
||||||
|
enable = mkEnableOption (mdDoc ''
|
||||||
|
Networkd-dispatcher service for systemd-networkd connection status
|
||||||
|
change. See [https://gitlab.com/craftyguy/networkd-dispatcher](upstream instructions)
|
||||||
|
for usage.
|
||||||
|
'');
|
||||||
|
|
||||||
|
scriptDir = mkOption {
|
||||||
|
type = types.path;
|
||||||
|
default = "/var/lib/networkd-dispatcher";
|
||||||
|
description = mdDoc ''
|
||||||
|
This directory is used for keeping various scripts read and run by
|
||||||
|
networkd-dispatcher. See [https://gitlab.com/craftyguy/networkd-dispatcher](upstream instructions)
|
||||||
|
for directory structure and script usage.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
|
||||||
|
packages = [ pkgs.networkd-dispatcher ];
|
||||||
|
services.networkd-dispatcher = {
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
# Override existing ExecStart definition
|
||||||
|
serviceConfig.ExecStart = [
|
||||||
|
""
|
||||||
|
"${pkgs.networkd-dispatcher}/bin/networkd-dispatcher -v --script-dir ${cfg.scriptDir} $networkd_dispatcher_args"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
# Directory structure required according to upstream instructions
|
||||||
|
# https://gitlab.com/craftyguy/networkd-dispatcher
|
||||||
|
tmpfiles.rules = [
|
||||||
|
"d '${cfg.scriptDir}' 0750 root root - -"
|
||||||
|
"d '${cfg.scriptDir}/routable.d' 0750 root root - -"
|
||||||
|
"d '${cfg.scriptDir}/dormant.d' 0750 root root - -"
|
||||||
|
"d '${cfg.scriptDir}/no-carrier.d' 0750 root root - -"
|
||||||
|
"d '${cfg.scriptDir}/off.d' 0750 root root - -"
|
||||||
|
"d '${cfg.scriptDir}/carrier.d' 0750 root root - -"
|
||||||
|
"d '${cfg.scriptDir}/degraded.d' 0750 root root - -"
|
||||||
|
"d '${cfg.scriptDir}/configuring.d' 0750 root root - -"
|
||||||
|
"d '${cfg.scriptDir}/configured.d' 0750 root root - -"
|
||||||
|
];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user