12 lines
232 B
Plaintext
12 lines
232 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
GREEN='\033[1;32m'
|
||
|
BLUE='\033[1;34m'
|
||
|
NC='\033[0m'
|
||
|
|
||
|
echo
|
||
|
echo -e "${GREEN}Building ${BLUE}$(hostname)${GREEN}...${NC}"
|
||
|
echo
|
||
|
|
||
|
sudo guix system -v 3 -c 8 -L ~/git/dotfiles/ build ~/git/dotfiles/fschl/systems/$(hostname).scm
|