.dotfiles/pkgs/flake/swarsel-instantiate/default.nix

8 lines
203 B
Nix

{ name, writeShellApplication, ... }:
writeShellApplication {
inherit name;
text = ''
set -euo pipefail
nix-instantiate --strict --eval --expr "let lib = import <nixpkgs/lib>; in $*"
'';
}