mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
15 lines
283 B
Nix
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 ];
|
|
}
|