From 7ed83ca51fed9a570da7e0a5cff9191063da329f Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 16 Aug 2024 13:55:25 +0200 Subject: [PATCH] fix: makefile --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index c5d0f03..f308bba 100644 --- a/Makefile +++ b/Makefile @@ -5,25 +5,25 @@ HOME_ARGS = -L ./home/modules ./home/home-configuration.scm TIMEMACHINE = guix time-machine -C channels.scm system-build: channels-lock.scm - $(TIMEMACHINE) -- guix system build $(SYSTEM_ARGS) + $(TIMEMACHINE) -- system build $(SYSTEM_ARGS) system-reconfigure: channels-lock.scm - $(TIMEMACHINE) -- guix system reconfigure $(SYSTEM_ARGS) + $(TIMEMACHINE) -- system reconfigure $(SYSTEM_ARGS) system-vm: channels-lock.scm - $(TIMEMACHINE) -- guix system vm $(SYSTEM_ARGS) + $(TIMEMACHINE) -- system vm $(SYSTEM_ARGS) system-container: channels-lock.scm - $(TIMEMACHINE) -- guix system container $(SYSTEM_ARGS) + $(TIMEMACHINE) -- system container $(SYSTEM_ARGS) home-build: channels-lock.scm - $(TIMEMACHINE) -- guix home build $(HOME_ARGS) + $(TIMEMACHINE) -- home build $(HOME_ARGS) home-reconfigure: channels-lock.scm - $(TIMEMACHINE) -- guix home reconfigure $(HOME_ARGS) + $(TIMEMACHINE) -- home reconfigure $(HOME_ARGS) home-container: channels-lock.scm - $(TIMEMACHINE) -- guix home container $(HOME_ARGS) + $(TIMEMACHINE) -- home container $(HOME_ARGS) channels-lock.scm: channels.scm $(TIMEMACHINE) -- describe -f channels > channels-lock.scm -- 2.48.1