diff options
author | bd <bdunahu@operationnull.com> | 2024-06-02 18:14:36 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-06-02 18:14:36 -0600 |
commit | febaf1247357246253fe711ea7ce646271393ca7 (patch) | |
tree | 57eb27ac2422fe782d26effb5e519759642e2248 /.config/guix/modules/ymir.scm | |
parent | 6e5f91b013bb7f245be43907b10906fbdabee41d (diff) |
Remove specification->package
Diffstat (limited to '.config/guix/modules/ymir.scm')
-rw-r--r-- | .config/guix/modules/ymir.scm | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/.config/guix/modules/ymir.scm b/.config/guix/modules/ymir.scm index 5b4a01d..a46e2da 100644 --- a/.config/guix/modules/ymir.scm +++ b/.config/guix/modules/ymir.scm @@ -26,33 +26,33 @@ (define ymir (operating-system - (host-name "ymir") - (locale "en_US.utf8") - (timezone "America/Denver") - (keyboard-layout (keyboard-layout "us")) - (kernel-arguments - (list - "quiet")) + (host-name "ymir") + (locale "en_US.utf8") + (timezone "America/Denver") + (keyboard-layout (keyboard-layout "us")) + (kernel-arguments + (list + "quiet")) - ;; 'root' is implicit - (users (cons* user - %base-user-accounts)) + ;; 'root' is implicit + (users (cons* user + %base-user-accounts)) - ;; grub (uefi) - (bootloader (bootloader-configuration - (bootloader grub-efi-bootloader) - (targets (list "/boot/efi")) - (keyboard-layout keyboard-layout))) + ;; grub (uefi) + (bootloader (bootloader-configuration + (bootloader grub-efi-bootloader) + (targets (list "/boot/efi")) + (keyboard-layout keyboard-layout))) - ;; OVERRIDE THESE - (packages - %base-packages) - (services - %base-services) - (file-systems (cons* - (file-system - (mount-point "/") - (device "none") - (type "tmpfs") - (check? #f)) - %base-file-systems)))) + ;; OVERRIDE THESE + (packages + %base-packages) + (services + %base-services) + (file-systems (cons* + (file-system + (mount-point "/") + (device "none") + (type "tmpfs") + (check? #f)) + %base-file-systems)))) |