mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 15:24:39 +02:00
13 lines
216 B
Nix
13 lines
216 B
Nix
{ pkgs-my-features, ... }:
|
|
{
|
|
services.octoprint = {
|
|
enable = true;
|
|
port = 8002;
|
|
package = pkgs-my-features.octoprint;
|
|
plugins =
|
|
plugins: with plugins; [
|
|
fanspeedslider
|
|
];
|
|
};
|
|
}
|