fschl/systems/base: remove host specific bootloader + file-system
This commit is contained in:
parent
8d9be295c1
commit
fa19de0f0f
|
@ -34,14 +34,10 @@
|
||||||
|
|
||||||
;; Use the UEFI variant of GRUB with the EFI System
|
;; Use the UEFI variant of GRUB with the EFI System
|
||||||
;; Partition mounted on /boot/efi.
|
;; Partition mounted on /boot/efi.
|
||||||
(bootloader (bootloader-configuration
|
(bootloader (bootloader-configuration
|
||||||
(bootloader grub-bootloader)
|
(bootloader grub-efi-bootloader)
|
||||||
(targets (list "/dev/nvme0n1p1"))
|
(targets '("/boot/efi"))
|
||||||
(keyboard-layout keyboard-layout)))
|
(keyboard-layout keyboard-layout)))
|
||||||
;; (bootloader (bootloader-configuration
|
|
||||||
;; (bootloader grub-efi-bootloader)
|
|
||||||
;; (targets '("/boot/efi"))
|
|
||||||
;; (keyboard-layout keyboard-layout)))
|
|
||||||
|
|
||||||
;; Guix doesn't like it when there isn't a file-systems
|
;; Guix doesn't like it when there isn't a file-systems
|
||||||
;; entry, so add one that is meant to be overridden
|
;; entry, so add one that is meant to be overridden
|
||||||
|
@ -51,11 +47,6 @@
|
||||||
(device "none")
|
(device "none")
|
||||||
(type "tmpfs")
|
(type "tmpfs")
|
||||||
(check? #f))
|
(check? #f))
|
||||||
|
|
||||||
(file-system
|
|
||||||
(device "/dev/nvme0n1p3")
|
|
||||||
(mount-point "/")
|
|
||||||
(type "ext4"))
|
|
||||||
%base-file-systems))
|
%base-file-systems))
|
||||||
|
|
||||||
(users (cons (user-account
|
(users (cons (user-account
|
||||||
|
|
Loading…
Reference in New Issue