diff options
-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))) |