diff options
author | Markus Hihn <markus.hihn@dcso.de> | 2017-12-23 09:19:45 +0100 |
---|---|---|
committer | Markus Hihn <markus.hihn@dcso.de> | 2017-12-23 09:19:45 +0100 |
commit | 370989e5c34ad0118ab02d3325be6d5cdcb9a7e5 (patch) | |
tree | 3190f9c0861a4ef8d5542411a59fd2a7d6cd3e01 /jeschli/1systems/bln | |
parent | 516ad7989ac03d539cad05b8586452b9ffd280b4 (diff) |
jeschli bln: gh/gd aliases
Diffstat (limited to 'jeschli/1systems/bln')
-rw-r--r-- | jeschli/1systems/bln/config.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/jeschli/1systems/bln/config.nix b/jeschli/1systems/bln/config.nix index 0748667..578638a 100644 --- a/jeschli/1systems/bln/config.nix +++ b/jeschli/1systems/bln/config.nix @@ -54,7 +54,11 @@ # List packages installed in system profile. To search by name, run: # $ nix-env -qaP | grep wget nixpkgs.config.allowUnfree = true; - environment.shellAliases = { n = "nix-shell"; }; + environment.shellAliases = { + n = "nix-shell"; + gd = "cd /home/markus/go/src/gitlab.dcso.lolcat"; + gh = "cd /home/markus/go/src/github.com"; + }; environment.variables = { GOROOT= [ "${pkgs.go.out}/share/go" ]; }; environment.systemPackages = with pkgs; [ # system helper |