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

9 lines
168 B
Nix

{ name, writeShellApplication, ... }:
writeShellApplication {
inherit name;
runtimeInputs = [ ];
text = ''
nix shell github:nixos/nixpkgs/"$1"#"$2";
'';
}