From f2269d261e0ac6df481eb6b84547eb4a53642453 Mon Sep 17 00:00:00 2001 From: Vineet Kumar Date: Wed, 13 May 2026 14:32:01 -0400 Subject: saklas: fix vps bootloader and networking --- epistemia/systems/saklas.scm | 21 ++++++++++----------- 1 file 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 { (firmware (cons* amdgpu-firmware %base-firmware)) (bootloader (bootloader-configuration - (bootloader grub-zfs) - (targets '("/boot/efi")))) + (bootloader grub-zfs-bios) + (targets '("/dev/sda")))) (file-systems (append (list (file-system @@ -267,11 +267,7 @@ table inet filter { (mount-point "/home") (type "zfs") (check? #f) - (needed-for-boot? #t)) - (file-system - (device (uuid "0837-6658" 'fat)) - (mount-point "/boot/efi") - (type "vfat"))) + (needed-for-boot? #t))) %base-file-systems)) (packages (append (list emacs-no-x @@ -324,12 +320,15 @@ table inet filter { (value "157.180.125.215/32")) (network-address (device "eth0") - (value "2a01:4f9:c013:d07e::1/64")))) + (value "2a01:4f9:c014:ca8e::1/64")))) (routes (list (network-route - (destination "default") - (device "eth0") - (gateway "172.31.1.1")) + (destination "172.31.1.1") + (device "eth0") + (scope 'link)) + (network-route + (destination "default") + (gateway "172.31.1.1")) (network-route (destination "default") (device "eth0") -- cgit v1.2.3