update fschl/systems/{base,x230}.scm
This commit is contained in:
parent
e0e2b2e103
commit
024feceb44
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
(define-public base-operating-system
|
(define-public base-operating-system
|
||||||
(operating-system
|
(operating-system
|
||||||
(host-name "x230guix")
|
(host-name "default-placeholder")
|
||||||
(timezone "Europe/Berlin")
|
(timezone "Europe/Berlin")
|
||||||
(locale "en_US.utf8")
|
(locale "en_US.utf8")
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
;; Partition mounted on /boot/efi.
|
;; Partition mounted on /boot/efi.
|
||||||
(bootloader (bootloader-configuration
|
(bootloader (bootloader-configuration
|
||||||
(bootloader grub-bootloader)
|
(bootloader grub-bootloader)
|
||||||
;;(targets (list "/dev/sda"))
|
(targets (list "/dev/vda"))
|
||||||
(keyboard-layout keyboard-layout)))
|
(keyboard-layout keyboard-layout)))
|
||||||
;; (bootloader (bootloader-configuration
|
;; (bootloader (bootloader-configuration
|
||||||
;; (bootloader grub-efi-bootloader)
|
;; (bootloader grub-efi-bootloader)
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
(check? #f))
|
(check? #f))
|
||||||
|
|
||||||
(file-system
|
(file-system
|
||||||
(device "/dev/sda3")
|
(device "/dev/vda3")
|
||||||
(mount-point "/")
|
(mount-point "/")
|
||||||
(type "ext4"))
|
(type "ext4"))
|
||||||
%base-file-systems))
|
%base-file-systems))
|
||||||
|
@ -81,21 +81,21 @@
|
||||||
|
|
||||||
;; Install bare-minimum system packages
|
;; Install bare-minimum system packages
|
||||||
(packages (append (map specification->package
|
(packages (append (map specification->package
|
||||||
'("git"
|
'("bluez"
|
||||||
"ntfs-3g"
|
"bluez-alsa"
|
||||||
|
"brightnessctl"
|
||||||
|
"btrfs-progs"
|
||||||
|
"emacs-no-x-toolkit"
|
||||||
"exfat-utils"
|
"exfat-utils"
|
||||||
"fuse-exfat"
|
"fuse-exfat"
|
||||||
"stow"
|
"git"
|
||||||
"vim"
|
"gvfs" ;; Enable user mounts
|
||||||
"emacs-no-x-toolkit"
|
|
||||||
"brightnessctl"
|
|
||||||
"bluez"
|
|
||||||
"bluez-alsa"
|
|
||||||
"intel-vaapi-driver"
|
"intel-vaapi-driver"
|
||||||
"libva-utils"
|
"libva-utils"
|
||||||
"xf86-input-libinput"
|
|
||||||
"nss-certs" ;; SSL root certificates
|
"nss-certs" ;; SSL root certificates
|
||||||
"gvfs")) ;; Enable user mounts
|
"ntfs-3g"
|
||||||
|
"vim"
|
||||||
|
"xf86-input-libinput"))
|
||||||
%base-packages))
|
%base-packages))
|
||||||
|
|
||||||
;; Configure only the services necessary to run the system
|
;; Configure only the services necessary to run the system
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
(define-module (fschl systems x230ding)
|
(define-module (fschl systems x230)
|
||||||
#:use-module (fschl utils)
|
#:use-module (fschl utils)
|
||||||
#:use-module (fschl systems base)
|
#:use-module (fschl systems base)
|
||||||
#:use-module (fschl systems common)
|
#:use-module (fschl systems common)
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
(define system
|
(define system
|
||||||
(operating-system
|
(operating-system
|
||||||
(inherit base-operating-system)
|
(inherit base-operating-system)
|
||||||
(host-name "x230guix")
|
(host-name "x230")
|
||||||
|
|
||||||
;; Add sof-firmware drivers for audio on ThinkPad x230
|
;; Add sof-firmware drivers for audio on ThinkPad x230
|
||||||
;; (firmware (list linux-firmware sof-firmware))
|
;; (firmware (list linux-firmware sof-firmware))
|
||||||
|
|
Loading…
Reference in New Issue