fix web.nix typo

This commit is contained in:
Alejandro Diaz 2023-09-11 03:10:06 -06:00
parent 90b2fb2803
commit 4043767e01
2 changed files with 10 additions and 7 deletions

View file

@ -35,19 +35,22 @@
libgpiod
];
networking.wireless = {
enable = true;
environmentFile = "/var/lib/wlan.conf";
networking = {
hostName = "tripi";
firewall.allowedTCPPorts = [ 80 ];
networks."@WLAN_SSID@".psk = "@WLAN_PSK@";
wireless = {
enable = true;
environmentFile = "/var/lib/wlan.conf";
networks."@WLAN_SSID@".psk = "@WLAN_PSK@";
};
};
networking.hostName = "tripi";
services.openssh = {
enable = true;
settings.PasswordAuthentication = true;
settings.PermitRootLogin = "yes";
firewall.allowedTCPPorts = [ 80 ];
};
users.users."root".initialPassword = "password";

View file

@ -25,7 +25,7 @@
instance = {
type = "normal";
pythonPackages = py: [ py.callPackage ../ui { } ];
pythonPackages = py: [ (py.callPackage ../ui { }) ];
module = "homemanager.wsgi";
socket = "${config.services.uwsgi.runDir}/uwsgi.sock";