examples: Avoid duplicate SDDM service for Plasma on aarch64-linux.
This is a followup to cf28f46930
.
* gnu/system/examples/plasma.tmpl (services): Remove both
'gdm-service-type' and 'sddm-service-type' from %DESKTOP-SERVICES.
This commit is contained in:
parent
a08592b055
commit
30355c17d7
1 changed files with 4 additions and 3 deletions
|
@ -58,10 +58,11 @@
|
||||||
(sddm-configuration
|
(sddm-configuration
|
||||||
(theme "breeze")))
|
(theme "breeze")))
|
||||||
|
|
||||||
;; Remove GDM if it's among %DESKTOP-SERVICES (on some
|
;; Remove GDM if it's among %DESKTOP-SERVICES; on other
|
||||||
;; architectures it's not there).
|
;; architectures, %DESKTOP-SERVICES contains SDDM instead.
|
||||||
(remove (lambda (service)
|
(remove (lambda (service)
|
||||||
(eq? (service-kind service) gdm-service-type))
|
(memq (service-kind service)
|
||||||
|
(list gdm-service-type sddm-service-type)))
|
||||||
%desktop-services)))
|
%desktop-services)))
|
||||||
;; Allow resolution of '.local' host names with mDNS.
|
;; Allow resolution of '.local' host names with mDNS.
|
||||||
(name-service-switch %mdns-host-lookup-nss))
|
(name-service-switch %mdns-host-lookup-nss))
|
||||||
|
|
Reference in a new issue