go home-manager module

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2025-10-24 12:24:29 +02:00
parent fb974329e7
commit 9e2eb410ab

View File

@@ -1,8 +1,7 @@
{ pkgs, ... }@all: with all;
{
home = {
packages = with pkgs; [
go
];
{ pkgs, ... }@all: with all; {
programs.go = {
enable = true;
package = pkgs.go;
goPath = "${config.xdg.dataHome}/go";
};
}