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 | c87334ccc6406ab07904ce3715378dd9bf392286 (patch) | |
tree | 9907f6017aff88159a65eef1fbdf57ae19d0ba0a /jeschli | |
parent | 03fde41b6c223e65363df43a26e735459a3cf92a (diff) |
jeschli bln: gh/gd aliases
Diffstat (limited to 'jeschli')
-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 0748667ba..578638a7e 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 |