guix-packages/ambrevar/system/usb-install-media: Fix filesystem

master
Pierre Neidhardt 2019-01-18 19:32:26 +01:00
parent face06769d
commit 5771bdffa6
1 changed files with 11 additions and 1 deletions

View File

@ -14,4 +14,14 @@
;; that's brittle and less explicit to the user.
(bootloader (bootloader-configuration
(bootloader grub-bootloader)
(target "/dev/sda"))))
(target "/dev/sda")))
(file-systems (cons* (file-system
(device (file-system-label "guixsd"))
(mount-point "/")
(type "ext4"))
(file-system
(mount-point "/tmp")
(device "none")
(type "tmpfs")
(check? #f))
%base-file-systems)))