.dotfiles/pkgs/quickpass/default.nix
2025-11-17 22:49:17 +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";
}