dotfiles/hm/dev/go.nix

25 lines
355 B
Nix
Raw Normal View History

2024-01-10 14:01:18 +01:00
# Untested post-nix
2024-12-15 00:29:51 +01:00
{
pkgs,
lib,
config,
...
}:
2024-01-10 14:01:18 +01:00
{
config = lib.mkIf config.frogeye.dev.go {
frogeye = {
direnv = {
GOPATH = "${config.xdg.cacheHome}/go";
};
};
home = {
packages = with pkgs; [
go
];
sessionPath = [
"${config.home.sessionVariables.GOPATH}"
];
};
};
}