all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Daniel Hatton <dan.hatton@btinternet.com>
To: GUIX help list <help-guix@gnu.org>
Subject: Re: How to diagnose Bluetooth trouble?
Date: Thu, 21 Nov 2024 18:26:55 +0000	[thread overview]
Message-ID: <871df5e0-98e9-4663-b11b-de3ec0707599@btinternet.com> (raw)
In-Reply-To: <87y11clq4p.fsf@lapenas.dev>


[-- Attachment #1.1: Type: text/plain, Size: 4309 bytes --]

On 21/11/2024 12:37, Ignas Lapėnas wrote:

> It might be a stupid question, but I'm still somewhat new on Guix...
> Do you use guix system? Or are you using guix on a foreign distro?
> Also if you're using guix system, can you send me your system
> configuration. I could try to reproduce the issue on my machine on the
> weekend and see
> if my bluetooth is discovered.

It's a Guix system.  I've appended config.scm below.

> Another question what bluetooth dongle are you using?

0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth Dongle (HCI mode)

(it was working well until about 10 days ago)

Here's my config.scm:

;; This is an operating system configuration generated
;; by the graphical installer.
;;
;; Once installation is complete, you can learn and modify
;; this file to tweak the system configuration, and pass it
;; to the 'guix system reconfigure' command to effect your
;; changes.


;; Indicate which modules to import to access the variables
;; used in this configuration.
(use-modules (gnu))
(use-service-modules cups desktop networking ssh xorg)

(operating-system
   (locale "en_GB.utf8")
   (timezone "Europe/London")
   (keyboard-layout (keyboard-layout "gb" "extd"))
   (host-name "verderer")

   ;; Custom groups
   (groups (cons* (user-group (name "docker"))
		 (user-group (name "dan"))
		 (user-group (name "girton"))
		 (user-group (name "pcs"))
		 (user-group (name "mirp"))
		 (user-group (name "cpom"))
		 (user-group (name "bpi"))
		 (user-group (name "itg"))
		 (user-group (name "mmm"))
		 (user-group (name "midas"))
		 %base-groups))

   ;; The list of user accounts ('root' is implicit).
   (users (cons* (user-account
                   (name "dan")
                   (comment "Daniel Christopher Hatton")
                   (group "dan")
                   (home-directory "/home/dan")
                   (supplementary-groups '("users" "wheel" "netdev" 
"audio" "video" "docker" "girton" "pcs" "mirp" "cpom" "bpi" "itg" "mmm" 
"midas")))
                 %base-user-accounts))

   ;; Packages installed system-wide.  Users can also install packages
   ;; under their own account: use 'guix search KEYWORD' to search
   ;; for packages and 'guix install PACKAGE' to install a package.
   (packages (append (list (specification->package "perl"))
                     %base-packages))

   ;; Below is the list of system services.  To search for available
   ;; services, run 'guix system search KEYWORD' in a terminal.
   (services
    (append (list (service gnome-desktop-service-type)

                  ;; To configure OpenSSH, pass an 'openssh-configuration'
                  ;; record as a second argument to 'service' below.
		 (bluetooth-service #:auto-enable? #t)
                  (service openssh-service-type)
                  (service cups-service-type)
		 (service pulseaudio-service-type)
                  (set-xorg-configuration
                   (xorg-configuration (keyboard-layout keyboard-layout))))

            ;; This is the default list of services we
            ;; are appending to.
            %desktop-services))
   (bootloader (bootloader-configuration
                 (bootloader grub-bootloader)
                 (targets (list "/dev/sda"))
                 (keyboard-layout keyboard-layout)))
   (mapped-devices (list (mapped-device
                           (source (uuid
                                    "55c736e6-1434-4f41-8821-0015bc2f2295"))
                           (target "cryptroot")
                           (type luks-device-mapping))))

   ;; The list of file systems that get "mounted".  The unique
   ;; file system identifiers there ("UUIDs") can be obtained
   ;; by running 'blkid' in a terminal.
   (file-systems (cons* (file-system
                          (mount-point "/boot/efi")
                          (device (uuid "8A5B-8552"
                                        'fat32))
                          (type "vfat"))
                        (file-system
                          (mount-point "/")
                          (device "/dev/mapper/cryptroot")
                          (type "ext4")
                          (dependencies mapped-devices)) 
%base-file-systems)))





[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

      reply	other threads:[~2024-11-21 18:27 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-16 10:39 How to diagnose Bluetooth trouble? Daniel Hatton
2024-11-18  7:57 ` Ignas Lapėnas
2024-11-18  9:53   ` Daniel Hatton
2024-11-18 11:35     ` Ignas Lapėnas
2024-11-18 13:48       ` Daniel Hatton
2024-11-18 14:15         ` Ignas Lapėnas
2024-11-20 13:02           ` Daniel Hatton
2024-11-21 12:13             ` Daniel Hatton
2024-11-21 12:37               ` Ignas Lapėnas
2024-11-21 18:26                 ` Daniel Hatton [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=871df5e0-98e9-4663-b11b-de3ec0707599@btinternet.com \
    --to=dan.hatton@btinternet.com \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.