dotfiles/nix/home-manager/modules/3d-printing.nix

13 lines
251 B
Nix
Raw Normal View History

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib, inputs }:
2021-02-26 10:24:58 +01:00
{ config, lib, ... }:
{
home.packages = with nixpkgs; [
openscad
cura
inkscape
] ++ [
nixpkgs-unstable.prusa-slicer
# custom.freecad-appimage
2021-02-26 10:24:58 +01:00
];
}