diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-12-20 08:27:42 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-12-20 08:27:42 -0500 |
commit | 0067f465d4bb6e40fb5aa10b216a7347398f2140 (patch) | |
tree | 73482efb04a2dcc94618be1c9678b8d221ff4890 | |
parent | b8f101aef26f43e4e61c35de4bc0fd9b8628afb1 (diff) |
ikaruga: Add bluetooth service.
-rw-r--r-- | ikaruga.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/ikaruga.scm b/ikaruga.scm index fc687f5..6d7bc17 100644 --- a/ikaruga.scm +++ b/ikaruga.scm @@ -47,12 +47,18 @@ (comment "David Thompson") (group "users") (home-directory "/home/dave") - (supplementary-groups '("wheel" "netdev" "audio" "video"))) + (supplementary-groups + '("audio" + "lp" ; for bluetooth + "netdev" + "video" + "wheel"))) ; for sudo %base-user-accounts)) (packages (append (list (specification->package "nss-certs")) %base-packages)) - (services (modify-services (cons (service gnome-desktop-service-type) - %desktop-services) + (services (modify-services (cons* (service gnome-desktop-service-type) + (service bluetooth-service-type) + %desktop-services) ;; Get nonguix substitutes. (guix-service-type config => (guix-configuration |