mirror of
https://github.com/arnaucube/configs.git
synced 2026-02-10 04:26:41 +01:00
12 lines
278 B
Bash
Executable File
12 lines
278 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DEVICE=$1
|
|
|
|
if [ -z $DEVICE ] ; then
|
|
echo "missing 1st argument (DEVICE), ie. the name of the device where the backup is being done (eg. thinkpad, surface)"
|
|
exit 1
|
|
fi
|
|
|
|
cp /etc/nixos/* ./nixos/
|
|
mv ./nixos/configuration.nix ./nixos/$DEVICE-configuration.nix
|