21 lines
321 B
Nix
21 lines
321 B
Nix
{ pkgs, ... }:
|
|
{
|
|
users.users.makefu.packages = with pkgs; [
|
|
# media
|
|
picard
|
|
asunder
|
|
#darkice
|
|
lame
|
|
# creation
|
|
blender
|
|
openscad
|
|
# slicing
|
|
#cura
|
|
chitubox
|
|
# cura
|
|
bambu-studio
|
|
];
|
|
xdg.portal.enable = true;
|
|
#xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
}
|