mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 07:13:40 +00:00
10 lines
191 B
Bash
Executable File
10 lines
191 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
update_msg=$(nix flake update 2>&1 | grep -v 'warning:')
|
|
make
|
|
git add .
|
|
git commit -S -m "nix flake update: $(TZ=UTC date '+%Y-%m-%d %H:%M:%S %Z')
|
|
|
|
$update_msg"
|
|
git push
|