diff options
| author | Vineet Kumar <git@vineetk.net> | 2026-05-13 14:32:01 -0400 |
|---|---|---|
| committer | Vineet Kumar <git@vineetk.net> | 2026-05-13 14:45:08 -0400 |
| commit | f2269d261e0ac6df481eb6b84547eb4a53642453 (patch) | |
| tree | d34f21dbdd98dd36600f8845f1f31e1669337afb | |
| parent | 73cbf2ae1c8d7e5b4ec5f52f1d23aeb61ae12149 (diff) | |
saklas: fix vps bootloader and networking
| -rw-r--r-- | epistemia/systems/saklas.scm | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/epistemia/systems/saklas.scm b/epistemia/systems/saklas.scm index 339476d..1bcdc1a 100644 --- a/epistemia/systems/saklas.scm +++ b/epistemia/systems/saklas.scm | |||
| @@ -240,8 +240,8 @@ table inet filter { | |||
| 240 | (firmware (cons* amdgpu-firmware %base-firmware)) | 240 | (firmware (cons* amdgpu-firmware %base-firmware)) |
| 241 | 241 | ||
| 242 | (bootloader (bootloader-configuration | 242 | (bootloader (bootloader-configuration |
| 243 | (bootloader grub-zfs) | 243 | (bootloader grub-zfs-bios) |
| 244 | (targets '("/boot/efi")))) | 244 | (targets '("/dev/sda")))) |
| 245 | 245 | ||
| 246 | (file-systems (append | 246 | (file-systems (append |
| 247 | (list (file-system | 247 | (list (file-system |
| @@ -267,11 +267,7 @@ table inet filter { | |||
| 267 | (mount-point "/home") | 267 | (mount-point "/home") |
| 268 | (type "zfs") | 268 | (type "zfs") |
| 269 | (check? #f) | 269 | (check? #f) |
| 270 | (needed-for-boot? #t)) | 270 | (needed-for-boot? #t))) |
| 271 | (file-system | ||
| 272 | (device (uuid "0837-6658" 'fat)) | ||
| 273 | (mount-point "/boot/efi") | ||
| 274 | (type "vfat"))) | ||
| 275 | %base-file-systems)) | 271 | %base-file-systems)) |
| 276 | 272 | ||
| 277 | (packages (append (list emacs-no-x | 273 | (packages (append (list emacs-no-x |
| @@ -324,12 +320,15 @@ table inet filter { | |||
| 324 | (value "157.180.125.215/32")) | 320 | (value "157.180.125.215/32")) |
| 325 | (network-address | 321 | (network-address |
| 326 | (device "eth0") | 322 | (device "eth0") |
| 327 | (value "2a01:4f9:c013:d07e::1/64")))) | 323 | (value "2a01:4f9:c014:ca8e::1/64")))) |
| 328 | (routes | 324 | (routes |
| 329 | (list (network-route | 325 | (list (network-route |
| 330 | (destination "default") | 326 | (destination "172.31.1.1") |
| 331 | (device "eth0") | 327 | (device "eth0") |
| 332 | (gateway "172.31.1.1")) | 328 | (scope 'link)) |
| 329 | (network-route | ||
| 330 | (destination "default") | ||
| 331 | (gateway "172.31.1.1")) | ||
| 333 | (network-route | 332 | (network-route |
| 334 | (destination "default") | 333 | (destination "default") |
| 335 | (device "eth0") | 334 | (device "eth0") |
