From 3084d6586919cf4129548cd59321553e3faffb04 Mon Sep 17 00:00:00 2001 From: Renken Date: Fri, 9 Sep 2022 17:57:30 +0200 Subject: home: custom packages list for foreign distros Running on GNU/Linux Debian testing for example allows me to have access to more up-to-date and better maintained software compared to Guix when needed. For now, certain software will be installed through apt instead of Guix itself such as mpd, mpv and neovim. The user will have to manually check if Guix-installed packages are compatible with the apt-installed ones. --- nichijou/home/mpd.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'nichijou/home/mpd.scm') diff --git a/nichijou/home/mpd.scm b/nichijou/home/mpd.scm index e935ed7..1585a1b 100644 --- a/nichijou/home/mpd.scm +++ b/nichijou/home/mpd.scm @@ -2,10 +2,13 @@ #:use-module (gnu home services) #:use-module (gnu packages mpd) #:use-module (gnu services) - #:use-module (guix gexp)) + #:use-module (guix gexp) + #:use-module (ice-9 optargs)) -(define-public packages - (list mpd)) +(define*-public (get-packages #:key (foreign-distro? #f)) + (if foreign-distro? + (list) + (list mpd))) ;; TODO: Write MPD home service? (define-public services -- cgit v1.2.3