Files
shed/modules/home/scripts/commands/invoke.nix

10 lines
121 B
Nix

{
self,
pkgs,
}:
pkgs.writeShellScriptBin "invoke" ''
#!/run/current-system/sw/bin/bash
nix run nixpkgs#"$@"
''