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:
parent
77633d22ae
commit
c6dac53b72
5 changed files with 2 additions and 8 deletions
|
@ -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" .)
|
||||
|
|
|
@ -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" .)
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue