Home

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