nixos/extra/3d-printer.nix
2021-12-14 17:52:14 +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 ];
}