From 7c4ba7aff91552d52c94db765c91aee78ffb88b4 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 5 Dec 2022 11:29:20 -0500 Subject: Fix sneaky tabs that got into the thinkpad x1 post. --- posts/2022-12-05-guix-thinkpad-x1-10th-gen.md | 40 +++++++++++++-------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/posts/2022-12-05-guix-thinkpad-x1-10th-gen.md b/posts/2022-12-05-guix-thinkpad-x1-10th-gen.md index 2619182..4b12204 100644 --- a/posts/2022-12-05-guix-thinkpad-x1-10th-gen.md +++ b/posts/2022-12-05-guix-thinkpad-x1-10th-gen.md @@ -205,17 +205,17 @@ This is the OS configuration I ended up with: (packages (append (list (specification->package "nss-certs")) %base-packages)) (services (modify-services (cons (service gnome-desktop-service-type) - %desktop-services) - ;; Get nonguix substitutes. - (guix-service-type config => - (guix-configuration - (inherit config) - (substitute-urls - (append (list "https://substitutes.nonguix.org") - %default-substitute-urls)) - (authorized-keys - (append (list (local-file "./nonguix-signing-key.pub")) - %default-authorized-guix-keys)))))) + %desktop-services) + ;; Get nonguix substitutes. + (guix-service-type config => + (guix-configuration + (inherit config) + (substitute-urls + (append (list "https://substitutes.nonguix.org") + %default-substitute-urls)) + (authorized-keys + (append (list (local-file "./nonguix-signing-key.pub")) + %default-authorized-guix-keys)))))) (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (targets (list "/boot/efi")) @@ -226,16 +226,16 @@ This is the OS configuration I ended up with: (target "cryptroot") (type luks-device-mapping)))) (file-systems (cons* (file-system - (mount-point "/boot/efi") - (device (uuid "91D3-F76B" - 'fat32)) - (type "vfat")) + (mount-point "/boot/efi") + (device (uuid "91D3-F76B" + 'fat32)) + (type "vfat")) (file-system - (mount-point "/") - (device "/dev/mapper/cryptroot") - (type "ext4") - (dependencies mapped-devices)) - %base-file-systems))) + (mount-point "/") + (device "/dev/mapper/cryptroot") + (type "ext4") + (dependencies mapped-devices)) + %base-file-systems))) ``` To reconfigure the system using nonguix for the first time, the -- cgit v1.2.3