From 1ba51527f4bed2cbee2f217acf3bbc1aa5822b6d Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Thu, 5 Mar 2020 11:00:11 +0100 Subject: Bluetooth drivers working --- README.md | 7 +++++++ config.scm | 19 ++++++++++++------- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c291270..ef970a1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ # My guix configuration Probably going to obsolete my dotfiles + + +Reconfigure the system with this command: + +``` +sudo -E guix system reconfigure config.scm +``` diff --git a/config.scm b/config.scm index 98d7867..b605b33 100644 --- a/config.scm +++ b/config.scm @@ -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))) -- cgit v1.2.3