Compare commits
3 commits
f7c5255017
...
63d14c58fd
Author | SHA1 | Date | |
---|---|---|---|
Chandler Swift | 63d14c58fd | ||
Chandler Swift | a15ddc5758 | ||
Chandler Swift | 2065a65757 |
|
@ -5,7 +5,12 @@
|
||||||
3. Deploy updated config with `make`
|
3. Deploy updated config with `make`
|
||||||
4. Set up [Remote Disk Unlocking](https://nixos.wiki/wiki/Remote_disk_unlocking)
|
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
|
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
|
# Notes on Caddy
|
||||||
Until 2.8 is released with 24.11, Caddy has a pretty limited sense of what
|
Until 2.8 is released with 24.11, Caddy has a pretty limited sense of what
|
||||||
|
|
9
bigbird/README.md
Normal file
9
bigbird/README.md
Normal file
|
@ -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.
|
|
@ -21,6 +21,8 @@
|
||||||
boot.zfs.forceImportRoot = false;
|
boot.zfs.forceImportRoot = false;
|
||||||
boot.zfs.extraPools = [ "nas" ];
|
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`
|
networking.hostId = "66abd088"; # `openssl rand -hex 4`
|
||||||
|
|
||||||
time.timeZone = "America/Chicago";
|
time.timeZone = "America/Chicago";
|
||||||
|
|
Loading…
Reference in a new issue