宋文武 writes:
> ```
> (define (exclude-some-packages lst)
> (filter (lambda (pkg)
> (not (memq pkg (list
> gnome-terminal
> gnome-user-docs
> gnome-maps
> lst))
>
>
> (service gnome-deskt
Lee Thompson writes:
> Hi All,
>
> Is there an analogue in Guix for NixOS's `excludePackage`? Under NixOS I
> had something like the following in my system config:
>> environment.gnome.excludePackages = with pkgs.gnome; [
>> cheese
>> epiphany
>> gnome-music
>> ];
I think it can be
Hi All,
Is there an analogue in Guix for NixOS's `excludePackage`? Under NixOS I
had something like the following in my system config:
> environment.gnome.excludePackages = with pkgs.gnome; [
> cheese
> epiphany
> gnome-music
> ];
Which allowed me to use a mostly OOTB Gnome install m