mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 09:36:14 +01:00
15 lines
271 B
Nix
15 lines
271 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
flake.overlays.itp =
|
||
|
final: prev: {
|
||
|
itp = prev.writeShellApplication {
|
||
|
name = "itp";
|
||
|
runtimeInputs = with final; [
|
||
|
influxdb2-cli
|
||
|
jq
|
||
|
];
|
||
|
text = builtins.readFile ./itp.sh;
|
||
|
};
|
||
|
};
|
||
|
}
|