From 3005da4ea17f5a124e2fc45dacc2cbec64e0f374 Mon Sep 17 00:00:00 2001 From: NullBite Date: Tue, 26 Dec 2023 18:16:49 -0500 Subject: [PATCH] Add script to sync repo to system NixOS config --- sync.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 sync.sh diff --git a/sync.sh b/sync.sh new file mode 100755 index 0000000..8a0b61e --- /dev/null +++ b/sync.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +sudo rsync -rlptDHAXviP ~/git/nixos-config/ /etc/nixos/ --exclude='*.example' --exclude='.git' --exclude=".gitignore" --exclude="sync.sh"