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