We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb36123 commit 4f4c72eCopy full SHA for 4f4c72e
1 file changed
Makefile
@@ -20,3 +20,10 @@ format:
20
.PHONY: update
21
update:
22
nix flake update && $(MAKE) follow
23
+
24
+# Useful if you would not like this binary and dependencies garbage collected.
25
+.PHONY: gc-root
26
+gc-root:
27
+ @mkdir -p /nix/var/nix/gcroots/per-user/$(USER)
28
+ @ln -sfn $(PWD)/result /nix/var/nix/gcroots/per-user/$(USER)/xnixvim
29
+ @echo "Created GC root: /nix/var/nix/gcroots/per-user/$(USER)/xnixvim -> $(PWD)/result"
0 commit comments