Price Hiller
a8f2e16dbc
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m6s
10 lines
177 B
Nix
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) ];
|
|
}
|