Re: Remove Package from Gnome Meta-Package

2024-06-09 Thread Lee Thompson
宋文武 writes: > ``` > (define (exclude-some-packages lst) > (filter (lambda (pkg) > (not (memq pkg (list > gnome-terminal > gnome-user-docs > gnome-maps > lst)) > > > (service gnome-deskt

Re: Remove Package from Gnome Meta-Package

2024-06-02 Thread 宋文武
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

Remove Package from Gnome Meta-Package

2024-06-02 Thread Lee Thompson
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