.dotfiles/pkgs/update-checker/default.nix
2024-12-29 00:36:04 +01:00

6 lines
170 B
Nix

{ self, name, writeShellApplication, nvd }:
writeShellApplication {
inherit name;
runtimeInputs = [ nvd ];
text = builtins.readFile "${self}/scripts/${name}.sh";
}