feat: add quickpass

This commit is contained in:
Leon Schwarzäugl 2025-11-17 22:48:33 +01:00
parent 65baf8fa28
commit 6152fbd623
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 44 additions and 0 deletions

View file

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