From 4eb46904e1e838194fb5bae831e83b2a54b0d61e Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Wed, 7 Aug 2024 16:31:12 +0700 Subject: [PATCH] home: ensure gopls is installed --- home/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/default.nix b/home/default.nix index 69d6359..34e4f11 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,4 +1,4 @@ -{ config, profile-path, ... }: +{ config, profile-path, pkgs, ... }: let user = config.profile.user; stateVersion = config.profile.system.stateVersion; @@ -20,6 +20,9 @@ in username = user.name; homeDirectory = "/home/${user.name}"; stateVersion = stateVersion; + packages = with pkgs; [ + gopls + ]; }; programs.home-manager.enable = true; systemd.user.sessionVariables = {