From 2065a657578c5fc7fc93a9dcc63a861649d1c6d6 Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Tue, 12 Nov 2024 00:54:46 -0600 Subject: [PATCH 1/3] foo --- bert/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 From a15ddc575878019c04c7766db365c63a2a113be3 Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Tue, 12 Nov 2024 01:05:36 -0600 Subject: [PATCH 2/3] bigbird: Enable ZFS autoscrub --- bigbird/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) 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"; From 63d14c58fda27fb576730096843464eaca3d488b Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Tue, 12 Nov 2024 01:07:53 -0600 Subject: [PATCH 3/3] bigbird: Add README with SD card note --- bigbird/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 bigbird/README.md 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.