Initial commit
diff --git a/scripts/update-home b/scripts/update-home
new file mode 100755
index 0000000..71d853a
--- /dev/null
+++ b/scripts/update-home
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+cd "$(dirname ${BASH_SOURCE[0]})/.."
+
+home-manager switch -f ./users/minion/home.nix
diff --git a/scripts/update-nix b/scripts/update-nix
new file mode 100755
index 0000000..7ea7705
--- /dev/null
+++ b/scripts/update-nix
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+cd "$(dirname ${BASH_SOURCE[0]})/.."
+
+sudo nixos-rebuild switch -I nixos-config=./system/configuration.nix
diff --git a/scripts/upgrade-home b/scripts/upgrade-home
new file mode 100755
index 0000000..2b74d7e
--- /dev/null
+++ b/scripts/upgrade-home
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+cd "$(dirname ${BASH_SOURCE[0]})/.."
+nix-channel --update
+home-manager switch -f ./users/minion/home.nix
diff --git a/scripts/upgrade-nix b/scripts/upgrade-nix
new file mode 100755
index 0000000..ff73187
--- /dev/null
+++ b/scripts/upgrade-nix
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+cd "$(dirname ${BASH_SOURCE[0]})/.."
+sudo nix-channel --update
+sudo scripts/update-nix