feat: add vershell utility

This commit is contained in:
Swarsel 2024-12-16 21:01:06 +01:00
parent d18a99a81e
commit f41ec53ee6
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
4 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ writeShellApplication }:
writeShellApplication {
name = "vershell";
runtimeInputs = [ ];
text = ''
nix shell github:nixos/nixpkgs/"$1"#"$2";
'';
}