nixos/extra/3d-printer.nix

16 lines
289 B
Nix
Raw Normal View History

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