~ruther/guix-config

ref: fdce1608937d58ede2eb7fdfc65cb6c421d76200 guix-config/Makefile -rw-r--r-- 752 bytes
fdce1608 — Rutherther feat: add basic Makefile 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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