fixed nixos-rebuild switch warnings for workhorse
This commit is contained in:
parent
4efe5617e6
commit
8567dbf7b4
3 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
<system/server>
|
<system/server>
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
||||||
./bepasty.nix
|
#./bepasty.nix not working https://github.com/NixOS/nixpkgs/issues/116326
|
||||||
#./castget.nix
|
#./castget.nix
|
||||||
./gogs.nix
|
./gogs.nix
|
||||||
./grafana.nix
|
./grafana.nix
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
#./metabase.nix
|
#./metabase.nix
|
||||||
#./jupyter.nix
|
#./jupyter.nix
|
||||||
./mysql.nix
|
./mysql.nix
|
||||||
./property.nix
|
#./property.nix flask sucks, find something else
|
||||||
./finance.nix
|
./finance.nix
|
||||||
#./mining.nix
|
#./mining.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
services.tor = {
|
services.tor = {
|
||||||
enable = true;
|
enable = true;
|
||||||
client.enable = true;
|
client.enable = true;
|
||||||
hiddenServices.liveos.map = [{ port = 1337; }];
|
relay.onionServices.liveos.map = [{ port = 1337; }];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
|
|
|
@ -50,7 +50,7 @@ in {
|
||||||
services.tor = {
|
services.tor = {
|
||||||
enable = true;
|
enable = true;
|
||||||
client.enable = true;
|
client.enable = true;
|
||||||
hiddenServices.bootup.map = [{ port = 23; }];
|
relay.onionServices.bootup.map = [{ port = 23; }];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue