all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Raghav Gururajan <rvgn@disroot.org>
To: "Marius Bakke" <mbakke@fastmail.com>, "Ludovic Courtès" <ludo@gnu.org>
Cc: dannym@scratchpost.org, help-guix@gnu.org
Subject: Re: Tor Service
Date: Fri, 31 May 2019 15:41:05 -0400	[thread overview]
Message-ID: <360c2269e8c4847229c6fc199e05d690f2f0f820.camel@disroot.org> (raw)
In-Reply-To: <875zpqbfdn.fsf@devup.no>

> Can you share a system configuration that reproduces this failure?

Sure, please find the following system config:

(use-modules
    (gnu)
    (gnu system nss))
(use-service-modules
    networking
    xorg
    desktop
    pm)
(use-package-modules
    certs
    gnome)
(operating-system
    (host-name "hostname")
    (timezone "Zone/SubZone")
    (locale "ab_XY.1234")
    (keyboard-layout
        (keyboard-layout
            "xy"
            "altgr-intl"))
    (bootloader
        (bootloader-configuration
            (bootloader
                (bootloader
                    (inherit grub-bootloader)
                    (installer #~(const #t))))
            (keyboard-layout keyboard-layout)))
    (mapped-devices
        (list
            (mapped-device
                (source
                    (uuid "luks-uuid"))
                    (target "partname")
                    (type luks-device-mapping))))
    (file-systems
        (append
            (list
                (file-system
                    (device
                        (file-system-label "fsname"))
                    (mount-point "/")
                    (type "ext4")
                    (dependencies mapped-devices)))
            %base-file-systems))
    (users
        (append
            (list
                (user-account
                    (name "username")
                    (comment "Full Name")
                    (group "users")
                    (supplementary-groups '("wheel" "netdev" "audio" "video"
"lp" "cdrom" "tape" "kvm" "tor"))))
            %base-user-accounts))
    (packages
        (append
            (list
                nss-certs
                gvfs)
            %base-packages))
    (services
        (append
            (list
                (extra-special-file "/usr/bin/env"
                    (file-append coreutils "/bin/env"))
		(service tor-service-type)
                (set-xorg-configuration
                    (xorg-configuration
                        (keyboard-layout keyboard-layout)))
                (service gnome-desktop-service-type)
		(service tlp-service-type))
            %desktop-services))
    (name-service-switch %mdns-host-lookup-nss))

  reply	other threads:[~2019-05-31 19:41 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-10  4:41 Tor Service Raghav Gururajan
2019-05-15 21:13 ` Ludovic Courtès
2019-05-16  4:52 ` Raghav Gururajan
2019-05-16  7:58 ` Raghav Gururajan
2019-05-19 14:24   ` Ludovic Courtès
2019-05-19 14:41   ` Raghav Gururajan
2019-05-30 17:45     ` Raghav Gururajan
2019-05-31 19:20       ` Marius Bakke
2019-05-31 19:41         ` Raghav Gururajan [this message]
2019-05-17 15:24 ` Raghav Gururajan
  -- strict thread matches above, loose matches on Subject: below --
2019-04-24 16:34 Raghav Gururajan

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=360c2269e8c4847229c6fc199e05d690f2f0f820.camel@disroot.org \
    --to=rvgn@disroot.org \
    --cc=dannym@scratchpost.org \
    --cc=help-guix@gnu.org \
    --cc=ludo@gnu.org \
    --cc=mbakke@fastmail.com \
    /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.