14 lines
300 B
Bash
Executable File
14 lines
300 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Script to synchronize system state
|
|
# with configuration files for nixos system
|
|
# and home-manager
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
# Rebuild system
|
|
sudo nixos-rebuild switch --flake $SCRIPT_DIR/..;
|
|
|
|
# Refresh
|
|
$SCRIPT_DIR/sync-posthook.sh
|