triviOS/triviOS/web.nix
2023-09-13 00:55:13 -06:00

43 lines
883 B
Nix

{ config, pkgs, ... }: {
config.services = {
nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
virtualHosts.home-manager = {
default = true;
locations = {
"/static".alias = ../ui/main/static;
"/".extraConfig = ''
uwsgi_pass unix://${config.services.uwsgi.runDir}/uwsgi.sock;
'';
};
};
};
uwsgi = {
enable = true;
user = "nginx";
plugins = [ "python3" ];
instance = {
type = "normal";
pythonPackages = py: [ (py.callPackage ../ui { }) ];
module = "homemanager.wsgi";
socket = "${config.services.uwsgi.runDir}/uwsgi.sock";
};
};
udev.extraRules = ''
KERNEL=="gpiochip*", GROUP="uwsgi", MODE="660"
'';
};
}