guix-packages/ambrevar/system/desktop-bababa: Init

master
Pierre Neidhardt 2019-01-22 23:38:43 +01:00
parent 92e3812468
commit 10abe98ae2
3 changed files with 30 additions and 1 deletions

View File

@ -46,6 +46,7 @@
;; Everything but Nouveau.
(delete xf86-video-nouveau %default-xorg-modules))
;; TODO: Move this to laptop-mimimi.
(define %mimimi/xorg-touchpad
"Section \"InputClass\"
Identifier \"Touchpads\"

View File

@ -0,0 +1,28 @@
;; With Eshell:
;; *sudo -E guix system reconfigure ~/.guix-packages/ambrevar/system/desktop-bababa.scm
(define-module (ambrevar system desktop-bababa)
#:use-module (ambrevar system default)
#:use-module (gnu system)
#:use-module (gnu bootloader)
#:use-module (gnu bootloader grub)
#:use-module (gnu packages linux)
#:use-module (gnu system file-systems))
(operating-system
(inherit default-operating-system)
(bootloader (bootloader-configuration
(bootloader grub-bootloader)
(timeout 1)
(target "/dev/sdb")))
(kernel linux-libre)
(firmware %base-firmware)
(file-systems (cons* (file-system
(device (file-system-label "guixsd"))
(mount-point "/")
(type "ext4"))
(file-system
(device (file-system-label "babadata"))
(mount-point "/media/babadata")
(type "ext4")
(create-mount-point? #t))
%base-file-systems)))

View File

@ -22,8 +22,8 @@
(mount-point "/")
(type "ext4"))
(file-system
(mount-point "/tmp")
(device "none")
(mount-point "/tmp")
(type "tmpfs")
(check? #f))
%base-file-systems)))