mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
13 lines
247 B
Nix
13 lines
247 B
Nix
{inputs, ...}: {
|
|
flake.overlays.itp = final: prev: {
|
|
itp = prev.writeShellApplication {
|
|
name = "itp";
|
|
runtimeInputs = with final; [
|
|
influxdb2-cli
|
|
jq
|
|
];
|
|
text = builtins.readFile ./itp.sh;
|
|
};
|
|
};
|
|
}
|