config-manager: Remove color after messages

This commit is contained in:
Alexander Heldt
2023-10-01 22:26:27 +02:00
parent 2d65df01a5
commit 776288f61e

View File

@@ -20,12 +20,12 @@ EOF
} }
update() { update() {
echo -e "\033[0;31mUPDATING FLAKE" echo -e "\033[0;31mUPDATING FLAKE\033[0m"
sudo nix flake update sudo nix flake update
} }
switch() { switch() {
echo -e "\033[0;31mREBUILDING + SWITCHING CONFIG" echo -e "\033[0;31mREBUILDING + SWITCHING CONFIG\033[0m"
sudo nixos-rebuild switch --flake ${flakePath}#${nixosConfiguration} sudo nixos-rebuild switch --flake ${flakePath}#${nixosConfiguration}
} }