diff options
Diffstat (limited to 'suweren')
-rw-r--r-- | suweren/home.scm | 84 |
1 files changed, 23 insertions, 61 deletions
diff --git a/suweren/home.scm b/suweren/home.scm index fc8f497..31a126a 100644 --- a/suweren/home.scm +++ b/suweren/home.scm @@ -2,18 +2,6 @@ #:use-module ((gnu home services shells) #:prefix gnu:home:services:shells:) - ;; easyeffects - #:use-module (gnu packages audio) - - ;; font-google-noto - ;; font-google-noto-emoji - ;; font-google-noto-sans-cjk - ;; font-google-noto-serif-cjk - #:use-module (gnu packages fonts) - - ;; kded - #:use-module (gnu packages kde-frameworks) - ;; home-profile-service-type #:use-module (gnu home services) @@ -26,17 +14,6 @@ ;; home-pipewire-service-type #:use-module (gnu home services sound) - ;; gnupg - ;; pinentry-qt - ;; pinentry-tty - #:use-module (gnu packages gnupg) - - ;; kde-gtk-config - #:use-module (gnu packages kde-plasma) - - ;; librewolf - #:use-module (gnu packages librewolf) - ;; service ;; simple-service #:use-module (gnu services) @@ -70,42 +47,27 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define-public %suweren-home-services - (let* ((packages (list easyeffects - font-hack - gnupg - kde-gtk-config - kded - librewolf - pinentry-qt - pinentry-tty)) - - (dbus (service home-dbus-service-type)) - (pipewire (service home-pipewire-service-type)) - (profile (simple-service 'default-home-packages - home-profile-service-type - packages)) - (shepherd (service home-shepherd-service-type))) + (let* + ( (dbus (service home-dbus-service-type)) + (pipewire (service home-pipewire-service-type)) + (shepherd (service home-shepherd-service-type))) (list dbus - pipewire - profile - shepherd - suweren-home-fontconfig-service-type - update-commands - (simple-service - 'environment-variables - home-environment-variables-service-type - `(("EDITOR" . "kate -s sesja -b"))) - (simple-service - 'bash-aliases - gnu:home:services:shells:home-bash-service-type - (gnu:home:services:shells:home-bash-extension - (aliases - `(("edit" . "$EDITOR"))))) - (simple-service - 'bash-prompt - gnu:home:services:shells:home-bash-service-type - (gnu:home:services:shells:home-bash-extension - (bash-profile - (list bash-prompt-configuration)) - (bashrc - (list bash-prompt-configuration))))))) + pipewire + shepherd + suweren-home-fontconfig-service-type + update-commands + (simple-service 'environment-variables + home-environment-variables-service-type + `(("EDITOR" . "kate -s sesja -b"))) + (simple-service 'bash-aliases + gnu:home:services:shells:home-bash-service-type + (gnu:home:services:shells:home-bash-extension + (aliases + `(("edit" . "$EDITOR"))))) + (simple-service 'bash-prompt + gnu:home:services:shells:home-bash-service-type + (gnu:home:services:shells:home-bash-extension + (bash-profile + (list bash-prompt-configuration)) + (bashrc + (list bash-prompt-configuration))))))) |