dots/users/price/conf/go/default.nix
Price Hiller a8f2e16dbc
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m6s
refactor(nix/hm/price): separate go to separate conf
2024-06-12 06:09:58 -05:00

10 lines
177 B
Nix

{ pkgs, ... }:
{
programs.go = {
enable = true;
goBin = ".local/bin/go";
goPath = ".local/share/go";
};
home.packages = with pkgs; [ (lib.hiPrio gotools) ];
}