Compare commits

..

2 commits

Author SHA1 Message Date
7b3e28f66d fix formatting update todo on readme 2023-08-22 19:45:44 -07:00
9dd3d15647 improve error log for nginx 2023-08-22 17:27:29 -07:00
2 changed files with 5 additions and 6 deletions

View file

@ -74,6 +74,8 @@
package = pkgs.openresty;
enable = true;
logError = "stderr warn";
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;

View file

@ -4,11 +4,8 @@ Nix Flake dotfiles used on my server.
## Todo
* Use [home-manager](https://github.com/nix-community/home-manager)
* Fix high memory usage on gitea, this may be something with using Argon2? [source](https://discourse.gitea.io/t/how-to-reduce-memory-usage/2947/3)
* Make it so our secrets consist upon reboot (currently just our wifi password, have to set every reboot) (maybe with [Agenix](https://github.com/ryantm/agenix) + [Age](https://github.com/FiloSottile/age)?
* Make everything __modular__.
* Fix systemd output only showing ONE message on the HDMI output. [related issue](https://github.com/NixOS/nixpkgs/issues/179701)
## Development
@ -16,7 +13,7 @@ _Commands here will assume you are currently in the directory of the dotfiles._
- To build the system:
```sh
sudo nixos-rebuild switch --flake ".#server"
sudo nixos-rebuild switch --flake ".#server"
```
## Permissions
@ -24,6 +21,6 @@ _Commands here will assume you are currently in the directory of the dotfiles._
File permissions should be done through the following commands:
```sh
sudo chmod 775 -R .
sudo chown -R reidlab:dotfiles .
sudo chmod 775 -R .
sudo chown -R reidlab:dotfiles .
```