Files
m3ta-home/profiles/sets/coding/languages/go.nix
T

20 lines
308 B
Nix
Raw Normal View History

2026-05-02 09:08:40 +02:00
# Go toolchain — compiler and language server.
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.coding.languages.go;
in {
options.coding.languages.go.enable = mkEnableOption "Go toolchain";
config = mkIf cfg.enable {
home.packages = with pkgs; [
go
gopls
];
};
}