summaryrefslogtreecommitdiff
path: root/suweren/home.scm
diff options
context:
space:
mode:
Diffstat (limited to 'suweren/home.scm')
-rw-r--r--suweren/home.scm27
1 files changed, 17 insertions, 10 deletions
diff --git a/suweren/home.scm b/suweren/home.scm
index fb3905c..b474aa0 100644
--- a/suweren/home.scm
+++ b/suweren/home.scm
@@ -4,18 +4,25 @@
#:use-module (gnu home services shells)
#:use-module (gnu home services shepherd)
#:use-module (gnu home services sound)
+ #:use-module (gnu packages fonts)
+ #:use-module (gnu packages gnupg)
#:use-module (gnu services)
+ #:use-module (nongnu packages mozilla)
#:use-module (suweren home services)
#:use-module (suweren services sound))
(define-public %home-environment
- (let* ((bash (service home-bash-service-type
- bash-configuration))
- (dbus (service home-dbus-service-type))
- (pipewire (service home-pipewire-service-type))
- (shepherd (service home-shepherd-service-type))
- (services (list bash
- dbus
- pipewire
- shepherd)))
- (home-environment (services services))))
+ (let ((bash (service home-bash-service-type
+ bash-configuration))
+ (dbus (service home-dbus-service-type))
+ (pipewire (service home-pipewire-service-type))
+ (shepherd (service home-shepherd-service-type)))
+ (let ((packages (list firefox
+ font-gnu-freefont
+ gnupg))
+ (services (list bash
+ dbus
+ pipewire
+ shepherd)))
+ (home-environment (packages packages)
+ (services services)))))