1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-03-17 21:57:05 +00:00

11 lines
192 B
Nix
Raw Normal View History

2025-01-31 15:40:41 -05:00
{ pkgs, lib, ... }:
pkgs.writers.writeFishBin "ip-check" {
makeWrapperArgs = [
"--prefix"
"PATH"
":"
"${lib.makeBinPath [ pkgs.curl ]}"
];
2025-02-22 17:39:12 -05:00
} (builtins.readFile ./ip.fish)