Re: OpenVPN Service

2020-11-19 Thread Julien Lepiller
Le 18 novembre 2020 20:04:33 GMT-05:00, jbra...@dismail.de a écrit : >I had an issue with openvpn service leaking my DNS queries. I've set >up network manager to manage my vpn connections. Though, I think I had >to use DNS over HTTPS to fix the leaking DNS issue. Well, this is not tomething y

Port forwarding for Guix containers

2020-11-19 Thread Zhu Zihao
Hi, Guix users! I found guix container "created by `guix environment --container` or `guix system container`" is very useful to isolate some service. But it only supports fully isolated network namespace or just share with host, it's not so safe IMO. In Docker, there's port forwarding, allow

mpDris2 failes to show notifications

2020-11-19 Thread Simon Streit
Hello, while I am setting up notifications, mdDris2 appears to fail to pass them on properly. Otherwise all notifications from other programmes work fine. If I call it with mpDris2 -d, messages are generated at: [1] But then if I monitor that over with dbus-monitor I get the following result: [2

Unaltered Git source

2020-11-19 Thread Stephen Scheck
Hello, Is there a way to retrieve the unaltered source of a Git project in a `(package ...)` definition? I'm using `%build-inputs` to retrieve the source, but this is a directory in /gnu/store, and all of the file permissions are changed to read-only (0400), which unfortunately causes problems wit

Re: Unaltered Git source

2020-11-19 Thread Tobias Geerinckx-Rice
Stephen, Stephen Scheck 写道: Is there a way to retrieve the unaltered source of a Git project in a `(package ...)` definition? I'm using `%build-inputs` to retrieve the source, but this is a directory in /gnu/store, and all of the file permissions are changed to read-only (0400), which unfortun

Re: Unaltered Git source

2020-11-19 Thread John Soo
Hello Stephen, You may also use make-file-writable to change permissions as you need. HTH, John