murex: enable lots of octoprint plugins
This commit is contained in:
parent
9fe6f8ac0a
commit
8712488db7
58
murex.nix
58
murex.nix
@ -78,7 +78,61 @@
|
|||||||
|
|
||||||
services.octoprint = {
|
services.octoprint = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# port = 80;
|
plugins = plugins: with pkgs; with python2Packages;
|
||||||
|
let rpi-gpio = buildPythonPackage rec {
|
||||||
|
pname = "RPi.GPIO";
|
||||||
|
version = "0.6.5";
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "a4210ad63bfe844e43995286de0d3950dfacfa0f3799bb9392770ac54a7d2e47";
|
||||||
|
};
|
||||||
|
}; in
|
||||||
|
[
|
||||||
|
(buildPythonPackage rec {
|
||||||
|
pname = "OctoPrint-PrintTimeGenius";
|
||||||
|
version = "1.3";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "eyal0";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1jfiih8vpd1x5yk2yq9sgi0rbjh2ipasj39vs2dmfm3va2fhy75l";
|
||||||
|
};
|
||||||
|
propagatedBuildInputs = [ octoprint ];
|
||||||
|
})
|
||||||
|
(buildPythonPackage rec {
|
||||||
|
pname = "OctoPrint-TouchUI";
|
||||||
|
version = "0.3.13";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "BillyBlaze";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0qk12ysabdzy6cna3l4f8v3qcnppppwxxsjx2i0xn1nd0cv6yzwh";
|
||||||
|
};
|
||||||
|
propagatedBuildInputs = [ octoprint ];
|
||||||
|
})
|
||||||
|
(buildPythonPackage rec {
|
||||||
|
pname = "OctoPrint-Cost";
|
||||||
|
version = "master";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jasiek";
|
||||||
|
repo = pname;
|
||||||
|
rev = "d1dc75aa64df332d54a237864a116c63cb9e6cf5";
|
||||||
|
sha256 = "0xkz1ygb5jspl1iy841lrv3fwm92ay09m6rw9g4vchwldqbgpjf3";
|
||||||
|
};
|
||||||
|
propagatedBuildInputs = [ octoprint ];
|
||||||
|
})
|
||||||
|
(buildPythonPackage rec {
|
||||||
|
pname = "OctoPrint-PSUControl";
|
||||||
|
version = "0.1.8";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kantlivelong";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0aj38d7b7d5pzmzq841pip18cpg18wy2vrxq2nd13875597y54b8";
|
||||||
|
};
|
||||||
|
propagatedBuildInputs = [ octoprint rpi-gpio ];
|
||||||
|
})
|
||||||
|
];
|
||||||
};
|
};
|
||||||
users.users.${config.services.octoprint.user}.extraGroups = [
|
users.users.${config.services.octoprint.user}.extraGroups = [
|
||||||
"dialout" # ttyUSB access
|
"dialout" # ttyUSB access
|
||||||
@ -104,7 +158,7 @@
|
|||||||
|
|
||||||
virtualHosts."murex.mtlaa.gebner.org" = {
|
virtualHosts."murex.mtlaa.gebner.org" = {
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://localhost:5000";
|
proxyPass = "http://localhost:${toString config.services.octoprint.port}";
|
||||||
proxyWebsockets = true;
|
proxyWebsockets = true;
|
||||||
};
|
};
|
||||||
locations."/webcam/".proxyPass = "http://localhost:5050/?action=stream";
|
locations."/webcam/".proxyPass = "http://localhost:5050/?action=stream";
|
||||||
|
Loading…
Reference in New Issue
Block a user