home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 259dca6b56eb02902f7a7dbe107a2a03ef5ba318
parent 91187877bfa07d7d0e843c93b4fd2313d12c9d04
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Tue, 26 Oct 2021 14:36:03 +0200

Makefile: remove secrets target…

… should not be needed anymore (even though not fully moved in
sops-nix)

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
MMakefile | 13++++---------
1 file changed, 4 insertions(+), 9 deletions(-)

diff --git a/Makefile b/Makefile @@ -20,11 +20,6 @@ all: switch update: nix-channel --update -.PHONY: secrets -secrets: - mkdir -p secrets - -cp -Rv $(SYNCDIR)/* secrets/ - .PHONY: assets assets: mkdir -p assets @@ -32,19 +27,19 @@ assets: chown -R vincent:users assets || true .PHONY: build -build: secrets +build: ./bin/system build .PHONY: nixos-dry-build -dry-build: secrets setup +dry-build: setup ./bin/system dry-build .PHONY: switch -switch: secrets +switch: ./bin/system switch .PHONY: boot -boot: secrets +boot: ./bin/system boot .PHONY: install-hooks