nixos/legacy/modules/3d-printer.nix

16 lines
283 B
Nix
Raw Normal View History

2021-03-28 21:00:50 +02:00
{ config, pkgs, ... }:
{
services.octoprint = {
enable = true;
plugins = plugins: with plugins; [
2021-12-14 17:52:14 +01:00
costestimation
displayprogress
m86motorsoff
2021-03-28 21:00:50 +02:00
stlviewer
2021-12-14 17:52:14 +01:00
telegram
titlestatus
2021-03-28 21:00:50 +02:00
];
};
networking.firewall.allowedTCPPorts = [ 5000 ];
}