nixos/legacy/modules/3d-printer.nix
2022-12-05 20:32:39 +01:00

15 lines
283 B
Nix

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