nixfleet/pkgs/cura/default.nix
Andrea Ciceri 28f14cab2e
Things
- `cura` without disallowed areas for Ender 3 printers
- `udiskie` service for automounting
- Emacs
  - removed `vimish-fold` and `evil-vimish-fold`
  - added `origami`
  - added  `highlight-indent-guides`
  - restored and improved `dirvish`
2022-06-03 11:48:47 +02:00

10 lines
336 B
Nix

{ pkgs }:
pkgs.cura.overrideAttrs (old: {
buildInputs = old.buildInputs ++ [ pkgs.jq ];
postInstall = old.postInstall or "" + ''
definitions="$out/share/cura/resources/definitions"
ce3="$definitions/creality_ender3.def.json"
cat <<< "$(jq '.overrides.machine_disallowed_areas.default_value = []' $ce3)" > $ce3
'';
})