mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 18:46:13 +01:00
9 lines
342 B
Nix
9 lines
342 B
Nix
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, ... }:
|
|
let
|
|
writeShellScriptBin = nixpkgs.writeShellScriptBin;
|
|
prusa-slicer = nixpkgs-unstable.callPackage ./prusa-slicer.nix {};
|
|
in
|
|
writeShellScriptBin "enter-env" ''
|
|
NIX_SHELL_PRESERVE_PROMPT=1 nix-shell -p ${nixpkgs.openscad} ${nixpkgs.cura} ${prusa-slicer} ${nixpkgs.inkscape}
|
|
''
|