Files
nixos-config/apps/x86_64-linux/apply
Christoph Schmatzler 17db6c3bb9 up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-08-23 16:45:57 +00:00

29 lines
516 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'
print_info() {
echo -e "${BLUE}📘${NC} $1"
}
print_success() {
echo -e "${GREEN}${NC} $1"
}
HOSTNAME="${1:-tahani}"
print_info "Applying configuration for $HOSTNAME"
if [[ "$EUID" -ne 0 ]]; then
sudo nixos-rebuild switch --flake ".#$HOSTNAME" "${@:2}"
else
nixos-rebuild switch --flake ".#$HOSTNAME" "${@:2}"
fi
print_success "Configuration applied successfully"