mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-18 14:45:51 +05:30
13 lines
242 B
Bash
Executable file
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;
|