mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
added needed python modules
This commit is contained in:
parent
ee26c4437d
commit
a13150440e
1 changed files with 10 additions and 0 deletions
|
@ -11,9 +11,18 @@
|
||||||
# automatically picked up.
|
# automatically picked up.
|
||||||
extraComponents = [
|
extraComponents = [
|
||||||
"tasmota"
|
"tasmota"
|
||||||
|
"history"
|
||||||
|
"history_stats"
|
||||||
"mqtt"
|
"mqtt"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
extraPackages = python3Packages:
|
||||||
|
with python3Packages; [
|
||||||
|
numpy
|
||||||
|
pyturbojpeg
|
||||||
|
# psycopg2 # uncomment for recorder postgressql support
|
||||||
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -26,6 +35,7 @@
|
||||||
proxyWebsockets = true;
|
proxyWebsockets = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
allow 100.64.0.0/16;
|
allow 100.64.0.0/16;
|
||||||
|
allow 10.0.0.114;
|
||||||
allow 127.0.0.1;
|
allow 127.0.0.1;
|
||||||
deny all;
|
deny all;
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue