nixos-config/upgrade.sh

13 lines
242 B
Bash
Executable file

#!/bin/sh
# Script to update system and sync
# Does not pull changes from git
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
# Update flake
$SCRIPT_DIR/update.sh;
# Synchronize system
$SCRIPT_DIR/sync.sh;