Drop support for cloudtop

While I do still technically own a Google cloudtop device, I haven't used it in
at least six months. In the interest of pruning non-critical dependencies, I'm
deleting it. I can alway restore it thanks to Git.
This commit is contained in:
William Carroll 2020-03-05 14:29:05 +00:00
parent 77633d22ae
commit c6dac53b72
5 changed files with 2 additions and 8 deletions

View file

@ -7,8 +7,6 @@ case $(hostname) in
(cd "$configs/desktop" && stow --target="$HOME" .);;
$LAPTOP)
(cd "$configs/work_laptop" && stow --target="$HOME" .);;
$CLOUDTOP)
(cd "$configs/cloudtop" && stow --target="$HOME" .);;
esac
(cd "$configs/shared" && stow --target="$HOME" .)

View file

@ -7,8 +7,6 @@ case $(hostname) in
(cd "$configs/desktop" && stow --delete --target="$HOME" .);;
$LAPTOP)
(cd "$configs/laptop" && stow --delete --target="$HOME" .);;
$CLOUDTOP)
(cd "$configs/cloudtop" && stow --delete --target="$HOME" .);;
esac
(cd "$configs/shared" && stow --delete --target="$HOME" .)

View file

@ -10,5 +10,4 @@ pkgs.mkShell rec {
NIX_PATH="nixpkgs=${NIXPKGS}:depot=${DEPOT}:briefcase=${BRIEFCASE}";
DESKTOP = "zeno.lon.corp.google.com";
LAPTOP = "seneca";
CLOUDTOP = "wpcarro.c.googlers.com";
}

View file

@ -12,9 +12,8 @@ import (
)
var hostnames = map[string]string{
os.Getenv("DESKTOP"): "desktop",
os.Getenv("LAPTOP"): "work_laptop",
os.Getenv("CLOUDTOP"): "cloudtop",
os.Getenv("DESKTOP"): "desktop",
os.Getenv("LAPTOP"): "work_laptop",
}
func main() {