mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
16 lines
289 B
Nix
16 lines
289 B
Nix
![]() |
{ config, pkgs, ... }:
|
||
|
{
|
||
|
services.octoprint = {
|
||
|
enable = true;
|
||
|
plugins = plugins: with plugins; [
|
||
|
#costestimation
|
||
|
#displayprogress
|
||
|
#m86motorsoff
|
||
|
stlviewer
|
||
|
#telegram
|
||
|
#title_status
|
||
|
];
|
||
|
};
|
||
|
networking.firewall.allowedTCPPorts = [ 5000 ];
|
||
|
}
|