~ruther/guix-config

fdce1608937d58ede2eb7fdfc65cb6c421d76200 — Rutherther 7 months ago dc23cda
feat: add basic Makefile
1 files changed, 31 insertions(+), 0 deletions(-)

A Makefile
A Makefile => Makefile +31 -0
@@ 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

Do not follow this link