1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-03-15 22:07:05 +00:00
2025-02-22 17:39:12 -05:00

11 lines
192 B
Nix

{ pkgs, lib, ... }:
pkgs.writers.writeFishBin "ip-check" {
makeWrapperArgs = [
"--prefix"
"PATH"
":"
"${lib.makeBinPath [ pkgs.curl ]}"
];
} (builtins.readFile ./ip.fish)