From fdce1608937d58ede2eb7fdfc65cb6c421d76200 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 16 Aug 2024 12:53:45 +0200 Subject: [PATCH] feat: add basic Makefile --- Makefile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7d7b544 --- /dev/null +++ b/Makefile @@ -0,0 +1,31 @@ +.PHONY: system-reconfigure system-vm system-container system-build pull home-reconfigure home-vm home-container home-build + +SYSTEM_ARGS = -L ./modules ./config.scm +HOME_ARGS = -L ./home/modules ./home/home-configuration.scm + +system-build: + guix system build $(SYSTEM_ARGS) + +system-reconfigure: + guix system reconfigure $(SYSTEM_ARGS) + +system-vm: + guix system vm $(SYSTEM_ARGS) + +system-container: + guix system container $(SYSTEM_ARGS) + +home-build: + guix home build $(HOME_ARGS) + +home-reconfigure: + guix home reconfigure $(HOME_ARGS) + +home-container: + guix home container $(HOME_ARGS) + +channels-lock.scm: channels.scm + guix time-machine -C channels.scm -- describe -f channels > channels-lock.scm + +pull: channels-lock.scm + guix pull -C channels-lock.scm -- 2.48.1