diff options
Diffstat (limited to 'tv/5pkgs/override/dhcpcd.nix')
-rw-r--r-- | tv/5pkgs/override/dhcpcd.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tv/5pkgs/override/dhcpcd.nix b/tv/5pkgs/override/dhcpcd.nix new file mode 100644 index 000000000..202b8e5da --- /dev/null +++ b/tv/5pkgs/override/dhcpcd.nix @@ -0,0 +1,7 @@ +self: super: + +self.lib.overrideDerivation super.dhcpcd (old: { + configureFlags = old.configureFlags ++ [ + "--dbdir=/var/lib/dhcpcd" + ]; +}) |