mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
26 lines
555 B
Nix
26 lines
555 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.networking.iproute2;
|
|
in
|
|
{
|
|
options.networking.iproute2 = {
|
|
enable = mkEnableOption (lib.mdDoc "copying IP route configuration files");
|
|
rttablesExtraConfig = mkOption {
|
|
type = types.lines;
|
|
default = "";
|
|
description = lib.mdDoc ''
|
|
Verbatim lines to add to /etc/iproute2/rt_tables
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.etc."iproute2/rt_tables.d/nixos.conf" = {
|
|
mode = "0644";
|
|
text = cfg.rttablesExtraConfig;
|
|
};
|
|
};
|
|
}
|