nixos/extra/3d-printer.nix
2021-03-28 21:00:50 +02:00

15 lines
289 B
Nix

{ config, pkgs, ... }:
{
services.octoprint = {
enable = true;
plugins = plugins: with plugins; [
#costestimation
#displayprogress
#m86motorsoff
stlviewer
#telegram
#title_status
];
};
networking.firewall.allowedTCPPorts = [ 5000 ];
}