summary refs log tree commit diff
path: root/nixos/modules/services/networking/wg-quick.nix
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2021-04-08 13:33:09 +0200
committerajs124 <git@ajs124.de>2021-04-08 13:33:09 +0200
commitc6d4dae35dc9e06d8fa0e145fc6909643a0a05b3 (patch)
treed40acfad4b9bb22dac9d7e141910c6a917ca7ab8 /nixos/modules/services/networking/wg-quick.nix
parent5db7e33f1d642852764ce0f756b98cff09cad23f (diff)
downloadnixpkgs-c6d4dae35dc9e06d8fa0e145fc6909643a0a05b3.tar
nixpkgs-c6d4dae35dc9e06d8fa0e145fc6909643a0a05b3.tar.gz
nixpkgs-c6d4dae35dc9e06d8fa0e145fc6909643a0a05b3.tar.bz2
nixpkgs-c6d4dae35dc9e06d8fa0e145fc6909643a0a05b3.tar.lz
nixpkgs-c6d4dae35dc9e06d8fa0e145fc6909643a0a05b3.tar.xz
nixpkgs-c6d4dae35dc9e06d8fa0e145fc6909643a0a05b3.tar.zst
nixpkgs-c6d4dae35dc9e06d8fa0e145fc6909643a0a05b3.zip
treewide: fix eval without aliases after 9378fdf87e0626e8c63a90a378c38444ff54808b
Diffstat (limited to 'nixos/modules/services/networking/wg-quick.nix')
-rw-r--r--nixos/modules/services/networking/wg-quick.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/services/networking/wg-quick.nix b/nixos/modules/services/networking/wg-quick.nix
index 02fe40a22a1..3b76de58548 100644
--- a/nixos/modules/services/networking/wg-quick.nix
+++ b/nixos/modules/services/networking/wg-quick.nix
@@ -57,7 +57,7 @@ let
 
       preUp = mkOption {
         example = literalExample ''
-          ${pkgs.iproute}/bin/ip netns add foo
+          ${pkgs.iproute2}/bin/ip netns add foo
         '';
         default = "";
         type = with types; coercedTo (listOf str) (concatStringsSep "\n") lines;
@@ -68,7 +68,7 @@ let
 
       preDown = mkOption {
         example = literalExample ''
-          ${pkgs.iproute}/bin/ip netns del foo
+          ${pkgs.iproute2}/bin/ip netns del foo
         '';
         default = "";
         type = with types; coercedTo (listOf str) (concatStringsSep "\n") lines;
@@ -79,7 +79,7 @@ let
 
       postUp = mkOption {
         example = literalExample ''
-          ${pkgs.iproute}/bin/ip netns add foo
+          ${pkgs.iproute2}/bin/ip netns add foo
         '';
         default = "";
         type = with types; coercedTo (listOf str) (concatStringsSep "\n") lines;
@@ -90,7 +90,7 @@ let
 
       postDown = mkOption {
         example = literalExample ''
-          ${pkgs.iproute}/bin/ip netns del foo
+          ${pkgs.iproute2}/bin/ip netns del foo
         '';
         default = "";
         type = with types; coercedTo (listOf str) (concatStringsSep "\n") lines;