File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 143143 usage
144144 uv
145145 worktrunk
146- wrangler
147146 yadm
148147 yq-go
149148 zoxide
Original file line number Diff line number Diff line change 2626 networking . hostName = "gateway" ;
2727 networking . domain = "" ;
2828
29+ # Hetzner volume mounted early in initrd so that /nix is available before
30+ # systemd starts — avoids a chicken-and-egg problem where systemd itself
31+ # lives in /nix/store.
32+ boot . initrd . availableKernelModules = [ "virtio_scsi" ] ;
33+ fileSystems . "/nix" = {
34+ device = "/dev/disk/by-id/scsi-0HC_Volume_105289845" ;
35+ fsType = "ext4" ;
36+ options = [
37+ "discard"
38+ "defaults"
39+ ] ;
40+ neededForBoot = true ;
41+ } ;
42+
2943 # Open additional ports beyond the SSH default from hetzner.nix
3044 networking . firewall = {
3145 allowedTCPPorts = [
You can’t perform that action at this time.
0 commit comments