feat(justfile): switch away from nh (#1)
replaces the usage of nh with a super awesome little bash script that does basically the same thing :) Reviewed-on: #1 Co-authored-by: uku <hi@uku.moe> Co-committed-by: uku <hi@uku.moe>
This commit is contained in:
parent
840718e863
commit
e1e19a908b
3 changed files with 27 additions and 10 deletions
23
switch.sh
Normal file
23
switch.sh
Normal file
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
bold=$(tput bold)
|
||||
reset=$(tput sgr0)
|
||||
|
||||
flake="$1"
|
||||
|
||||
echo "${bold}Building configuration...$reset"
|
||||
configuration=$(sudo nixos-rebuild dry-activate --flake "$flake" --keep-going "${@:2}")
|
||||
echo "$configuration"
|
||||
|
||||
nix run "$flake#nixosConfigurations.$(hostname).pkgs.nvd" -- diff /run/current-system "$configuration"
|
||||
|
||||
read -n1 -rp "${bold}Activate new configuration? [y/N]$reset " answer
|
||||
echo
|
||||
|
||||
if [[ $answer =~ ^[Yy]$ ]]; then
|
||||
sudo "$configuration/bin/switch-to-configuration" switch
|
||||
else
|
||||
echo "${bold}Not activating :($reset"
|
||||
exit 1
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue