nix/modules/apps/zsh/scripts/rebuild.sh
2024-08-31 16:55:57 +02:00

18 lines
296 B
Bash
Executable file

#!/bin/sh
current_dir=$(pwd)
cd ~/nix
git add .
hostname=$(hostname)
if echo "$hostname" | grep -q 'desktop'; then
sudo nixos-rebuild switch --flake ~/nix/#desktop
elif echo "$hostname" | grep -q 'laptop'; then
sudo nixos-rebuild switch --flake ~/nix/#laptop
fi
cd "$current_dir"