From bc4c3c85a8738958a2a1394eac3df8981e6a6eae Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 17 Feb 2024 07:49:33 -0500 Subject: Refactor home stuff into modules, add pipewire. --- ikaruga-home.scm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'ikaruga-home.scm') diff --git a/ikaruga-home.scm b/ikaruga-home.scm index edf5ce5..85bd022 100644 --- a/ikaruga-home.scm +++ b/ikaruga-home.scm @@ -14,7 +14,12 @@ ;;; along with this program. If not, see ;;; . -(include "common-home.scm") +(define-module (ikaruga-home) + #:use-module (dthompson home common) + #:use-module (dthompson home pipewire) + #:use-module (gnu home) + #:use-module (gnu packages) + #:use-module (gnu services)) (home-environment (packages (specifications->packages @@ -64,7 +69,6 @@ "openssh" "pavucontrol" "pinentry" - "quassel" "quodlibet" "sfxr" "sicp" @@ -74,4 +78,5 @@ "tor" "vlc" "xournal"))) - (services common-services)) + (services (cons (service home-pipewire-service-type) + common-services))) -- cgit v1.2.3