unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: Adam Mazurkiewicz <trzczy@gmail.com>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: help-guix@gnu.org
Subject: Re: Adding a polkit-service to fix networkmanager
Date: Sat, 11 May 2019 02:46:59 +0200	[thread overview]
Message-ID: <CALStFoERCiLFQWVMpJT55g9XBs8C59n9iTnxuo54=vfK7LH+UA@mail.gmail.com> (raw)
In-Reply-To: <87a7fxxg04.fsf@gnu.org>

śr., 8 maj 2019 o 14:55 Ludovic Courtès <ludo@gnu.org> napisał(a):
>
> Hello,
>
> Adam Mazurkiewicz <trzczy@gmail.com> skribis:
>
> > I installed networkmanager in my Xfce Desktop Environment, but it did
> > not allow to add new connections.
>
> What application do you use to manage NetworkManager connectivity?  (The
> ‘network-manager’ package provides core ‘network-manager’, but on GNOME
> for instance the graphical application is ‘network-manager-applet’.)
I use 'network-manager-applet'. My recent config.sch (which did not
fix the privileges issue) is this:
(use-modules (gnu) (gnu system nss))
(use-service-modules desktop xorg ssh)
(use-package-modules certs gnome ssh)

(operating-system
  (host-name "antelope")
  (timezone "Europe/Paris")
  (locale "en_US.utf8")

  (keyboard-layout (keyboard-layout "us" "altgr-intl"))

  (bootloader (bootloader-configuration
                (bootloader grub-bootloader)
                (target "/dev/sda")
                (keyboard-layout keyboard-layout)))

  (file-systems (append
                 (list (file-system
                         (device (file-system-label "guixsd"))
                         (mount-point "/")
                         (type "ext4"))(file-system
                         (device (file-system-label "debianek"))
                         (mount-point "/home/s/.local/debianek")
                         (type "ext4")))
                 %base-file-systems))

  (users (cons (user-account
                (name "me")
                (comment "me")
                (group "users")
                (supplementary-groups '("wheel" "netdev"
                                        "audio" "video")))
               %base-user-accounts))

  (packages (append (list
                     nss-certs
    openssh
    network-manager-applet
                     gvfs)
                    %base-packages))

  (services (append (list (service gnome-desktop-service-type)
                          (service xfce-desktop-service-type)
                          (set-xorg-configuration
                           (xorg-configuration
                            (keyboard-layout keyboard-layout))))
                    %desktop-services))

  (name-service-switch %mdns-host-lookup-nss))
>
> >   ;; This is where we specify system-wide packages.
> >   (packages (cons* icecat
>
> As a side note, I would recommend keeping application in your user
> profile rather than globally installed.  That provides more flexibility.
To achieve it I should process an 'guix reconfigure' command as a
local user with a special config.sch?
>
> Thanks,
> Ludo’.
Thanks,
Adam

      reply	other threads:[~2019-05-10 20:11 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-06 19:19 Adding a polkit-service to fix networkmanager Adam Mazurkiewicz
2019-05-07 10:10 ` L p R n d n
2019-05-08 12:55 ` Ludovic Courtès
2019-05-11  0:46   ` Adam Mazurkiewicz [this message]

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

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CALStFoERCiLFQWVMpJT55g9XBs8C59n9iTnxuo54=vfK7LH+UA@mail.gmail.com' \
    --to=trzczy@gmail.com \
    --cc=help-guix@gnu.org \
    --cc=ludo@gnu.org \
    /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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).