1
0
Fork 0

all: remove outdated scripts

This commit is contained in:
Daniel Kempkens 2024-12-22 23:50:06 +01:00
parent c2a294623b
commit b389709731
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
2 changed files with 0 additions and 69 deletions

View file

@ -1,14 +0,0 @@
#!/bin/sh
set -eu
set -f # disable globbing
export IFS=' '
echo "Uploading $OUT_PATHS ..."
if /run/current-system/sw/bin/attic push nifoc-systems "$OUT_PATHS"; then
exit 0
else
echo "Ignoring error ..."
exit 0
fi

View file

@ -1,55 +0,0 @@
#!/usr/bin/env fish
set -f nix_os (uname)
set -f other_hostname $argv[1]
switch $nix_os
case Darwin
set -f nix_hostname (scutil --get LocalHostName)
set -f config_dir "$HOME/.config/nixpkgs"
case Linux
set -f nix_hostname (hostname -s)
set -f config_dir /etc/nixos
case '*'
echo "Unsupported OS"
exit 1
end
pushd "$config_dir"
rm -rf result
if test -z "$DIRENV_DIR"
eval (direnv export fish 2>/dev/null)
end
if test "$other_hostname" = ""
switch $nix_os
case Darwin
git pull
nom build ".#darwinConfigurations.$nix_hostname.config.system.build.toplevel"
if test $status -eq 0
env TERM=xterm-256color darwin-rebuild switch --flake ".#$nix_hostname"
end
case Linux
sudo git pull
sudo nixos-rebuild switch --flake .
end
else
git pull
nom build --eval-store auto --store "ssh-ng://root@$other_hostname.ts.kempkens.network" ".#nixosConfigurations.$other_hostname.config.system.build.toplevel"
if test $status -eq 0
deploy --skip-checks ".#$other_hostname"
end
end
if test $status -eq 0
if test "$other_hostname" = ""
attic push nifoc-systems /run/current-system
else
ssh -t "$other_hostname" attic push nifoc-systems /run/current-system
end
end
rm -f result
popd