From: brettg@posteo.net
To: help-guix <help-guix@gnu.org>
Cc: Help-Guix <help-guix-bounces+brettg=posteo.net@gnu.org>
Subject: Re: Removing prop-inputs
Date: Sat, 12 Jan 2019 03:25:59 +0100 [thread overview]
Message-ID: <7f30718ace92b2eaf63a30f623717371@posteo.net> (raw)
In-Reply-To: <13837c9dff3c68d246e0875baa3ec166@posteo.net>
On 12.01.2019 02:25, brettg@posteo.net wrote:
> Hi all, this is my system configuration file. I am trying to remove
> nautilus and epiphany from the gnome-desktop-service that gets loaded.
> So far I am not having any luck. Any ideas?
>
> (use-modules (gnu) (gnu system nss) (srfi srfi-1) (guix packages)
> (ice-9 match))
> (use-service-modules desktop xorg)
> (use-package-modules certs gnome)
>
> (define-public gnome-custom
> (package
> (inherit gnome)
> (name "gnome-custom")
> (propagated-inputs (remove
> (match-lambda
> ;; Ignore the second value.
> ((name _)
> (string=? name "nautilus")
> (string=? name "epiphany")))
> (package-propagated-inputs gnome)))))
>
> (operating-system
> (host-name "guixsd")
> (timezone "America/Chicago")
> (locale "en_US.utf8")
>
> ;; Use the UEFI variant of GRUB with the EFI System
> ;; Partition mounted on /boot/efi.
> (bootloader (bootloader-configuration
> (bootloader grub-efi-bootloader)
> (target "/boot/efi")))
>
> (file-systems (cons (file-system
> (device (file-system-label "my-root"))
> (mount-point "/")
> (type "ext4"))
> %base-file-systems))
>
> (users (cons (user-account
> (name "brettg")
> (comment "Brett Gilio")
> (group "users")
> (supplementary-groups '("wheel" "netdev"
> "audio" "video"))
> (home-directory "/home/brettg"))
> %base-user-accounts))
>
> ;; This is where we specify system-wide packages.
> (packages (cons* nss-certs ;for HTTPS access
> gvfs ;for user mounts
> %base-packages))
>
> ;; Add GNOME and/or Xfce---we can choose at the log-in
> ;; screen with F1. Use the "desktop" services, which
> ;; include the X11 log-in service, networking with
> ;; NetworkManager, and more.
> (services (cons* (service gnome-desktop-service-type
> (gnome-desktop-configuration
> (inherit config)
> (gnome-package gnome-custom)))
> %desktop-services))
>
> ;; Allow resolution of '.local' host names with mDNS.
> (name-service-switch %mdns-host-lookup-nss))
Update, I got it to work, but with some very hackish code. Any
suggestions would still be appreciated.
(define-public gnome-custom
(package (inherit gnome)
(name "gnome-custom")
(propagated-inputs (remove
(match-lambda
((name _)
(string=? name "epiphany")))
(remove
(match-lambda
((name _)
(string=? name "eog")))
(remove
(match-lambda
((name _)
(string=? name "totem")))
(remove
(match-lambda
((name _)
(string=? name "gedit")))
(remove
(match-lambda
((name _)
(string=? name "yelp")))
(remove
(match-lambda
((name _)
(string=? name "gnome-calculator")))
(package-propagated-inputs gnome))))))))))
next prev parent reply other threads:[~2019-01-12 2:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-12 1:25 Removing prop-inputs brettg
2019-01-12 2:25 ` brettg [this message]
2019-01-12 2:50 ` Timothy Sample
-- strict thread matches above, loose matches on Subject: below --
2019-01-12 3:08 brettg
2019-01-12 13:04 ` swedebugia
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=7f30718ace92b2eaf63a30f623717371@posteo.net \
--to=brettg@posteo.net \
--cc=help-guix-bounces+brettg=posteo.net@gnu.org \
--cc=help-guix@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.
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.