update fschl/systems/{base,x230}.scm

This commit is contained in:
Frieder Schlesier 2024-05-19 13:42:46 +02:00
parent e0e2b2e103
commit 024feceb44
2 changed files with 15 additions and 15 deletions

View File

@ -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

View File

@ -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))