add bluetooth service

- update bart default shell to zsh
- move channels to codeberg
This commit is contained in:
bartronx7 2025-08-19 08:03:37 -05:00
parent 11f001599a
commit b714fc11ef
3 changed files with 11 additions and 2 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.bak
current

View file

@ -9,7 +9,7 @@
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
(channel (channel
(name 'guix) (name 'guix)
(url "https://git.savannah.gnu.org/git/guix.git") (url "https://codeberg.org/guix/guix.git")
(branch "master") (branch "master")
(introduction (introduction
(make-channel-introduction (make-channel-introduction

View file

@ -11,6 +11,7 @@
;; used in this configuration. ;; used in this configuration.
(use-modules (gnu) (nongnu packages linux)) (use-modules (gnu) (nongnu packages linux))
(use-service-modules cups desktop networking ssh xorg) (use-service-modules cups desktop networking ssh xorg)
(use-package-modules shells)
(operating-system (operating-system
(kernel linux) (kernel linux)
@ -28,6 +29,7 @@
(comment "Bart") (comment "Bart")
(group "users") (group "users")
(home-directory "/home/bartronx7") (home-directory "/home/bartronx7")
(shell #~(string-append #$zsh "/bin/zsh"))
(supplementary-groups '("wheel" "netdev" "audio" "video"))) (supplementary-groups '("wheel" "netdev" "audio" "video")))
(user-account (user-account
(name "kate") (name "kate")
@ -46,7 +48,8 @@
(specification->package "st") (specification->package "st")
(specification->package "firefox") (specification->package "firefox")
(specification->package "libreoffice") (specification->package "libreoffice")
(specification->package "git") %base-packages)) (specification->package "git")
(specification->package "zsh")) %base-packages))
;; Below is the list of system services. To search for available ;; Below is the list of system services. To search for available
;; services, run 'guix system search KEYWORD' in a terminal. ;; services, run 'guix system search KEYWORD' in a terminal.
@ -55,6 +58,10 @@
;; To configure OpenSSH, pass an 'openssh-configuration' ;; To configure OpenSSH, pass an 'openssh-configuration'
;; record as a second argument to 'service' below. ;; record as a second argument to 'service' below.
(service bluetooth-service-type
(bluetooth-configuration
(fast-connectable? #t)
(auto-enable? #t)))
(service openssh-service-type) (service openssh-service-type)
(service tor-service-type) (service tor-service-type)
(service cups-service-type (service cups-service-type