Re: how can I use "tor"

2022-07-21 Thread Julien Lepiller
Hi Gottfried, you don't have to install tor or run it manually. The service is already running tor for you. To use Tor, you need to use a socks proxy to localhost:9050. You can configure icecat to connect to that proxy (and then check that you're actually connected through tor:

Re: how can I use "tor"

2022-07-21 Thread (
On Thu Jul 21, 2022 at 6:49 PM BST, Gottfried wrote: > I installed "tor, tor-client, torsocks". You probably don't need to do this. Except maybe for tor-client? Not sure, never used tor. > also I have "tor-service-type" in my config.scm. I think doing this and then `sudo guix system reconfigure

how can I use "tor"

2022-07-21 Thread Gottfried
Hi Guixers, I installed "tor, tor-client, torsocks". and also I have "tor-service-type" in my config.scm. Nevertheless it doesn't appear anywhere. I would like to use the Tor server separately, not in Firefox, as Tor Website proposed. gfp@Tuxedo ~$ tor Jul 21 19:30:24.097 [notice] Tor

Re: how to remove '"awesome"

2022-07-21 Thread (
On Thu Jul 21, 2022 at 4:58 PM BST, Gottfried wrote: > (packages > (append >(list (specification->package "nss-certs")) >%base-packages)) Exactly :) -- (

Re: how to remove '"awesome"

2022-07-21 Thread Gottfried
Hi, I found it in packages: (packages (append (list (specification->package "awesome") (specification->package "nss-certs")) %base-packages)) So should I make it like that: (packages (append (list (specification->package "nss-certs"))

Re: Error starting a guix shell

2022-07-21 Thread zimoun
Hi, On Tue, 19 Jul 2022 at 19:55, "(" wrote: > Good ol' #56545 strikes again. Well, #56545 is duplicated of #56441 already fixed. :-) http://issues.guix.gnu.org/issue/56441 Indeed, using a Guix revision from the range: 4ff12d1de7cd617b791996ee7ca1240660b4c20e Fri Jul 1 23:29:16 2022 +0200

Re: how to remove '"awesome"

2022-07-21 Thread (
On Thu Jul 21, 2022 at 2:41 PM BST, Gottfried wrote: > How can I remove it, because it's not a package I can remove with > guix remove awesome. Packages that you have installed by default will be in your system configuration; /etc/config.scm. You should be able to remove it from there. I'm not

how to remove '"awesome"

2022-07-21 Thread Gottfried
Hi Guixers, When I installed Guix System, I also installed the Desktop "awesome". It is not in my packages installed, but in gfp@Tuxedo ~$ which awesome /run/current-system/profile/bin/awesome I guess. I don't need it. How can I remove it, because it's not a package I can remove with guix

Re: boiler plate generation with hygenic macros in guile

2022-07-21 Thread Blake Shaw
Ah! sorry, let me begin again: Right now I am working on a window manager extension system in Guile and GOOPs, and I want to eliminate the boilerplate for generating class slots, with a syntax-case macro like: #+begin_example scheme (define-syntax slot-machine (λ (form) (syntax-case

boiler plate generation with hygenic macros in guile

2022-07-21 Thread Blake Shaw
Hi folks,