help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Tor Service


From: Raghav Gururajan
Subject: Re: Tor Service
Date: Fri, 31 May 2019 15:41:05 -0400

> 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 via email to

[Prev in Thread] Current Thread [Next in Thread]