add nm-applet, add ld-linux simple service

This commit is contained in:
Freya Murphy 2024-10-28 11:51:10 -04:00
parent 61ac1b0217
commit 7f4158762f
Signed by: freya
GPG key ID: 9FBC6FFD6D2DBF17
2 changed files with 10 additions and 2 deletions

View file

@ -47,6 +47,7 @@
"cage" "cage"
"libnotify" "libnotify"
"waybar" "waybar"
"network-manager-applet"
; xdg ; xdg
"xdg-desktop-portal-wlr" "xdg-desktop-portal-wlr"
@ -115,7 +116,7 @@
; utilities ; utilities
"qbittorrent" "qbittorrent"
"syncthing" "syncthing"
"wine-staging" "wine64"
"winetricks")) "winetricks"))
(list ; system (list ; system

View file

@ -276,7 +276,14 @@
(fast-connectable? #t))) (fast-connectable? #t)))
; yubikey ; yubikey
(service pcscd-service-type) (service pcscd-service-type)
(udev-rules-service 'fido2 libfido2 #:groups '("plugdev"))) (udev-rules-service 'fido2 libfido2 #:groups '("plugdev"))
; ld linux
(simple-service 'ld-service-type activation-service-type
#~(begin
(system* "mkdir" "-p" "/lib64")
(system* "ln" "-s"
(string-append #$glibc "/lib/ld-linux-x86-64.so.2")
"/lib64/ld-linux-x86-64.so.2"))))
;; append freya base services ;; append freya base services
%base-freya-services)) %base-freya-services))