about summary refs log tree commit diff
path: root/users/wpcarro/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/Makefile')
-rw-r--r--users/wpcarro/Makefile20
1 files changed, 14 insertions, 6 deletions
diff --git a/users/wpcarro/Makefile b/users/wpcarro/Makefile
index 52f46d0ea6..4e3361b800 100644
--- a/users/wpcarro/Makefile
+++ b/users/wpcarro/Makefile
@@ -1,9 +1,17 @@
-install:
-	source "${WPCARRO}/configs/install"
+install-cli-tools:
+	nix-env -f "${BRIEFCASE}" -iA shared.cliTools
 
-uninstall:
-	source "${WPCARRO}/configs/uninstall"
+install-configs:
+	nix-build -A configs.install && \
+	./result && \
+	rm ./result
+
+uninstall-configs:
+	nix-build -A configs.uninstall && \
+	./result && \
+	rm ./result
 
 list-broken-links:
-	find "${HOME}" -maxdepth 1 -xtype l && \
-	find "${HOME}/.config" -maxdepth 1 -xtype l
+	nix-build -A tools.symlinkManager && \
+	./result/bin/symlink-mgr -audit && \
+	rm ./result