* The problem
I've defined the following udev-rule in my configuration (full
configuration attached)
#+BEGIN_SRC scheme
(... some omitted lines ...)
(udev-service-type
config =>
(udev-configuration
(inherit config)
;; SEE:
https://unix.stackexchange.com/questions/459874/udev
Solved! I had to also run =chmod= (see complete configuration for
=udev-service-type= below)
#+BEGIN_SRC scheme
(udev-service-type
config =>
(udev-configuration
(inherit config)
(rules
`(,(udev-rule
"90-backlight.rules"
(string-append
"ACTION==\"add\","
"SUBS
Hi Rodrigo,
On Mon, Sep 18 2023, Rodrigo Morales wrote:
> I've defined the following udev-rule in my configuration
You are lucky your rule works! [1] Does udevadm find your rule?
Kind regards
Felix
[1] https://issues.guix.gnu.org/63508#3
Could you tell me what's the complete command that you are referring
to? I'm not very familiar with udevadm.
On Mon, 18 Sept 2023 at 02:44, Felix Lechner wrote:
>
> Hi Rodrigo,
>
> On Mon, Sep 18 2023, Rodrigo Morales wrote:
>
> > I've defined the following udev-rule in my configuration
>
> You a