.dotfiles/pkgs/flake/vershell/default.nix

9 lines
168 B
Nix

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