Home

dotnix @6e0dcedd3ff9f2b9ba7b9934b51e97c3230a2c5a - 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";
  };
}