24 lines
384 B
Nix
24 lines
384 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
home.packages = with pkgs; [
|
|
blender
|
|
prusa-slicer
|
|
google-fonts
|
|
];
|
|
|
|
fonts.fontconfig.enable = true;
|
|
|
|
xdg.desktopEntries.prusaslicer-url-handler = {
|
|
name = "PrusaSlicer Protocol Handler";
|
|
exec = "prusa-slicer %u";
|
|
type = "Application";
|
|
noDisplay = true;
|
|
mimeType = [ "x-scheme-handler/prusaslicer" ];
|
|
};
|
|
}
|