diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 23:18:59 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-10-31 23:18:59 +0100 |
commit | 58525c9ddacd8f44b928007a5d9a18a65c05689f (patch) | |
tree | bc1f0e509a13edcc54ee9e35e68a0fb240f71ec9 /system-configuration.scm | |
parent | 79ef2ad5169175505cecc9ba69019aa0be1298c0 (diff) |
System configuration: rename bootloader to bootloader-record
Diffstat (limited to 'system-configuration.scm')
-rw-r--r-- | system-configuration.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system-configuration.scm b/system-configuration.scm index 75f0d9e..9561a1b 100644 --- a/system-configuration.scm +++ b/system-configuration.scm @@ -105,7 +105,7 @@ (append system-services %desktop-services)) -(define bootloader +(define bootloader-record (bootloader-configuration (bootloader grub-bootloader) (targets '("/dev/sda")) (keyboard-layout keyboard-layout))) @@ -117,7 +117,7 @@ (users users) (packages packages) (services services) - (bootloader bootloader) + (bootloader bootloader-record) (swap-devices `(,(swap-space (target (uuid "73bed3f9-be07-40ad-a228-577cd24f2e1d"))))) (mapped-devices `(,(mapped-device (source (uuid "887ac37f-2919-41a0-a62a-e1ff5ea2d6cc")) (target "aisaka-root") |