nixpkgs/nixos/modules/services/misc/octoprint.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

143 lines
3.7 KiB
Nix
Raw Normal View History

2016-02-14 11:58:09 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.octoprint;
2016-03-12 14:52:09 +00:00
baseConfig = {
2019-05-30 13:28:25 +00:00
plugins.curalegacy.cura_engine = "${pkgs.curaengine_stable}/bin/CuraEngine";
2016-02-14 11:58:09 +00:00
server.host = cfg.host;
server.port = cfg.port;
webcam.ffmpeg = "${pkgs.ffmpeg.bin}/bin/ffmpeg";
2016-03-12 14:52:09 +00:00
};
fullConfig = recursiveUpdate cfg.extraConfig baseConfig;
cfgUpdate = pkgs.writeText "octoprint-config.yaml" (builtins.toJSON fullConfig);
2016-02-14 11:58:09 +00:00
pluginsEnv = package.python.withPackages (ps: [ ps.octoprint ] ++ (cfg.plugins ps));
package = pkgs.octoprint;
2016-02-14 11:58:09 +00:00
in
{
##### interface
options = {
services.octoprint = {
enable = mkEnableOption "OctoPrint, web interface for 3D printers";
2016-02-14 11:58:09 +00:00
host = mkOption {
type = types.str;
default = "0.0.0.0";
description = ''
2016-02-14 11:58:09 +00:00
Host to bind OctoPrint to.
'';
};
port = mkOption {
2021-06-18 15:27:16 +00:00
type = types.port;
2016-02-14 11:58:09 +00:00
default = 5000;
description = ''
2016-02-14 11:58:09 +00:00
Port to bind OctoPrint to.
'';
};
openFirewall = mkOption {
type = types.bool;
default = false;
description = "Open ports in the firewall for OctoPrint.";
};
2016-02-14 11:58:09 +00:00
user = mkOption {
type = types.str;
default = "octoprint";
description = "User for the daemon.";
2016-02-14 11:58:09 +00:00
};
group = mkOption {
type = types.str;
default = "octoprint";
description = "Group for the daemon.";
2016-02-14 11:58:09 +00:00
};
stateDir = mkOption {
type = types.path;
default = "/var/lib/octoprint";
description = "State directory of the daemon.";
2016-02-14 11:58:09 +00:00
};
plugins = mkOption {
type = types.functionTo (types.listOf types.package);
default = plugins: [ ];
defaultText = literalExpression "plugins: []";
example = literalExpression "plugins: with plugins; [ themeify stlviewer ]";
description = "Additional plugins to be used. Available plugins are passed through the plugins input.";
2016-02-14 11:58:09 +00:00
};
2016-03-12 14:52:09 +00:00
extraConfig = mkOption {
type = types.attrs;
default = { };
description = "Extra options which are added to OctoPrint's YAML configuration file.";
2016-03-12 14:52:09 +00:00
};
2016-02-14 11:58:09 +00:00
};
};
##### implementation
config = mkIf cfg.enable {
users.users = optionalAttrs (cfg.user == "octoprint") {
octoprint = {
2016-02-14 11:58:09 +00:00
group = cfg.group;
uid = config.ids.uids.octoprint;
};
};
2016-02-14 11:58:09 +00:00
users.groups = optionalAttrs (cfg.group == "octoprint") {
octoprint.gid = config.ids.gids.octoprint;
};
2016-02-14 11:58:09 +00:00
systemd.tmpfiles.rules = [
"d '${cfg.stateDir}' - ${cfg.user} ${cfg.group} - -"
# this will allow octoprint access to raspberry specific hardware to check for throttling
# read-only will not work: "VCHI initialization failed" error
"a /dev/vchiq - - - - u:octoprint:rw"
];
2016-02-14 11:58:09 +00:00
systemd.services.octoprint = {
description = "OctoPrint, web interface for 3D printers";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
path = [ pluginsEnv ];
preStart = ''
if [ -e "${cfg.stateDir}/config.yaml" ]; then
${pkgs.yaml-merge}/bin/yaml-merge "${cfg.stateDir}/config.yaml" "${cfgUpdate}" > "${cfg.stateDir}/config.yaml.tmp"
mv "${cfg.stateDir}/config.yaml.tmp" "${cfg.stateDir}/config.yaml"
else
cp "${cfgUpdate}" "${cfg.stateDir}/config.yaml"
chmod 600 "${cfg.stateDir}/config.yaml"
fi
'';
serviceConfig = {
ExecStart = "${pluginsEnv}/bin/octoprint serve -b ${cfg.stateDir}";
2016-02-14 11:58:09 +00:00
User = cfg.user;
Group = cfg.group;
SupplementaryGroups = [
"dialout"
];
2016-02-14 11:58:09 +00:00
};
};
networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ cfg.port ];
2016-02-14 11:58:09 +00:00
};
}