9 lines
86 B
Nix
9 lines
86 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Install Slic3r
|
|
home.packages = with pkgs; [
|
|
slic3r
|
|
];
|
|
}
|