mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>
13 lines
321 B
Bash
Executable File
13 lines
321 B
Bash
Executable File
#! /usr/bin/env nix-shell
|
|
#! nix-shell -i zsh -p zsh
|
|
|
|
|
|
cp configuration.nix /etc/nixos/.
|
|
cp -r programs /etc/nixos/.
|
|
mkdir -p /etc/nixos/machine
|
|
for machine in `ls -al machine | grep "^d" | rev | cut -d" " -f1 | rev`; do
|
|
cp -r machine/${machine} /etc/nixos/machine/
|
|
done
|
|
|
|
cp -r ./home/config/* /home/ellmau/.config/.
|