From 4df433a29ae38a7242abd3a8f7db032a9ca2732b Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Thu, 22 Aug 2024 06:55:58 +0100 Subject: [PATCH] Makefile build use one job by default --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7ab43127..0786e943 100644 --- a/Makefile +++ b/Makefile @@ -3,4 +3,4 @@ HOST := $(shell hostname) build: - nix build --keep-going .#nixosConfigurations.$(HOST).config.system.build.toplevel + nix build -j 1 --keep-going .#nixosConfigurations.$(HOST).config.system.build.toplevel