diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-03-05 11:00:11 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-03-05 11:00:11 +0100 |
commit | 1ba51527f4bed2cbee2f217acf3bbc1aa5822b6d (patch) | |
tree | 42d52eb0636756b23003eb5ca45675a6c6d31484 /config.scm | |
parent | 46b92ff0207e55e3fce49c4dbd66a57749d1a772 (diff) |
Bluetooth drivers working
Diffstat (limited to 'config.scm')
-rw-r--r-- | config.scm | 19 |
1 files changed, 12 insertions, 7 deletions
@@ -8,9 +8,7 @@ (operating-system (kernel linux) (initrd microcode-initrd) - (firmware (cons* iwlwifi-firmware - %base-firmware)) - + (firmware (list linux-firmware)) (locale "en_US.utf8") (timezone "Europe/Madrid") (keyboard-layout @@ -56,11 +54,18 @@ (packages (append (map specification->package - '("htop" "neovim" "nss-certs" "tree" "tcpdump" "openssh")) + '("htop" + "neovim" + "nss-certs" + "tree" + "tcpdump" + "openssh" + "bluez")) %base-packages)) (services (append (list (service gnome-desktop-service-type) - (set-xorg-configuration - (xorg-configuration - (keyboard-layout keyboard-layout)))) + (bluetooth-service #:auto-enable? #t) + (set-xorg-configuration + (xorg-configuration + (keyboard-layout keyboard-layout)))) %desktop-services))) |