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

14 lines
239 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; [
freecad
openscad
cura
inkscape
] ++ [
nixpkgs-unstable.prusa-slicer
];
}