diff --git a/bert/README.md b/bert/README.md index 5fc22b6..a09d035 100644 --- a/bert/README.md +++ b/bert/README.md @@ -5,7 +5,12 @@ 3. Deploy updated config with `make` 4. Set up [Remote Disk Unlocking](https://nixos.wiki/wiki/Remote_disk_unlocking) 1. mkdir -p /etc/secrets/initrd && ssh-keygen -N "" -f /etc/secrets/initrd/ssh_host_25519_key -5. Deploy content to web services +5. Deploy content: + - websites in /srv + - factorio world at /var/lib/factorio/saves/default.zip + - git/forgejo in /var/lib/forgejo + - navidrome +6. Set up Grafana users (log in with default admin/admin; change creds; configure) # Notes on Caddy Until 2.8 is released with 24.11, Caddy has a pretty limited sense of what diff --git a/bigbird/README.md b/bigbird/README.md new file mode 100644 index 0000000..0ccdd49 --- /dev/null +++ b/bigbird/README.md @@ -0,0 +1,9 @@ +# `bigbird`: ODROID HC4 NAS + +## SD card notes +Many SD cards I attempted would boot fine but then fail to reset on reboot. +Some preliminary research suggests that this may be a kernel issue, but I'm not +entirely sure at this point. For now, I took the easy way out: Just keep trying +SD cards until one works! Thankfully, it seems to be reliable that an SD card +works either 100% or 0% of the time. Currently using a 32GB Microcenter cheapo, +in place of the nicer 128GB ones I was planning on instead. diff --git a/bigbird/configuration.nix b/bigbird/configuration.nix index f50cdc4..e60b61e 100644 --- a/bigbird/configuration.nix +++ b/bigbird/configuration.nix @@ -21,6 +21,8 @@ boot.zfs.forceImportRoot = false; boot.zfs.extraPools = [ "nas" ]; + services.zfs.autoScrub.enable = true; # Current scan takes ~12h, runs monthly (I spend 2% of the time doing scans? lol) + networking.hostId = "66abd088"; # `openssl rand -hex 4` time.timeZone = "America/Chicago";