12 lines
286 B
Nix
12 lines
286 B
Nix
{pkgs, ...}: {
|
|
home = {
|
|
packages = with pkgs; [
|
|
unstable.blender
|
|
freecad # https://discourse.nixos.org/t/error-hash-mismatch-in-fixed-output-derivation/52353
|
|
unstable.kicad
|
|
unstable.openscad
|
|
prusa-slicer # Some error idk fix this later
|
|
];
|
|
};
|
|
}
|