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 | |
parent | 46b92ff0207e55e3fce49c4dbd66a57749d1a772 (diff) |
Bluetooth drivers working
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | config.scm | 19 |
2 files changed, 19 insertions, 7 deletions
@@ -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 +``` @@ -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))) |