diff options
author | lassulus <lassulus@lassul.us> | 2022-03-11 13:09:34 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-03-11 13:09:34 +0100 |
commit | 04f48503a4164f91192b147d6c16fc44dae41352 (patch) | |
tree | 53b356c9eeb925f7be9859645996c0af0a823796 /tv/5pkgs/override/dhcpcd.nix | |
parent | 97dc81c31e56901a2c8702dcf6cb474338123ec2 (diff) | |
parent | 15595864d2b70573b2ae0f08fce976226704491b (diff) |
Merge remote-tracking branch 'ni/master'
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" + ]; +}) |