.dotfiles/pkgs/quickpass/default.nix
2025-11-19 21:49:30 +01:00

6 lines
212 B
Nix

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