Home

dotnix @dc14f0a4651662ffb10b9ccbbc45e5b8dd4b59a4 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / nogui / go.nix
- raw
1
2
3
4
5
6
7
{config, ...}: {
  programs.go = rec {
    enable = true;
    goPath = "${config.xdg.dataHome}/go";
    goBin = "${goPath}/bin";
  };
}