user: Fix gui programs being installed by mistake

This commit is contained in:
Simon Bruder 2021-01-28 16:35:54 +01:00
parent 67fe507a2d
commit 204962d0f3
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC

View file

@ -198,7 +198,7 @@ in
wl-clipboard # not really gui, but cli tool to manage wayland clipboard wl-clipboard # not really gui, but cli tool to manage wayland clipboard
wxhexeditor # hex editor wxhexeditor # hex editor
xfce.thunar # graphical file manager xfce.thunar # graphical file manager
] ++ lib.optionals config.sbruder.full [ ] ++ lib.optionals (config.sbruder.gui.enable && config.sbruder.full) [
# communication # communication
ungoogled-chromium # useful for exporting pages as pdf ungoogled-chromium # useful for exporting pages as pdf
@ -215,7 +215,7 @@ in
# office # office
jameica # application framework (used for hibiscus online banking) jameica # application framework (used for hibiscus online banking)
pdfsam-basic # pdf multitool pdfsam-basic # pdf multitool
] ++ lib.optionals (!config.sbruder.full) [ ] ++ lib.optionals (config.sbruder.gui.enable && !config.sbruder.full) [
# creative/design # creative/design
gimp # without plugins gimp # without plugins
]; ];