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/mpv.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'nichijou/home/mpv.scm') diff --git a/nichijou/home/mpv.scm b/nichijou/home/mpv.scm index 9df9d9b..ca6a82c 100644 --- a/nichijou/home/mpv.scm +++ b/nichijou/home/mpv.scm @@ -2,10 +2,13 @@ #:use-module (gnu home services) #:use-module (gnu packages video) #:use-module (gnu services) - #:use-module (guix gexp)) + #:use-module (guix gexp) + #:use-module (ice-9 optargs)) -(define-public packages - (list mpv mpv-mpris)) +(define*-public (get-packages #:key (foreign-distro? #f)) + (if foreign-distro? + (list) + (list mpv mpv-mpris))) ;; TODO: Implement mpv home service? (define-public services -- cgit v1.2.3