dotfiles/nixos/home-manager/packages/enter-env/default.nix

8 lines
232 B
Nix
Raw Normal View History

2020-12-29 17:35:11 +01:00
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom }:
let
writeShellScriptBin = nixpkgs.writeShellScriptBin;
in
writeShellScriptBin "enter-env" ''
NIX_SHELL_PRESERVE_PROMPT=1 nix-shell -p ${nixpkgs.openscad} ${nixpkgs.cura}
''