From c29abd2cee9fb7f3d2b0426e25055fc24123832d Mon Sep 17 00:00:00 2001 From: alydev Date: Tue, 21 Oct 2025 16:44:50 +1000 Subject: [PATCH] update --- system/global.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/system/global.nix b/system/global.nix index 712fa6e..df2f0f0 100644 --- a/system/global.nix +++ b/system/global.nix @@ -4,10 +4,16 @@ boot.loader.efi.canTouchEfiVariables = true; nix.settings.experimental-features = [ "nix-command" "flakes" ]; environment.systemPackages = with pkgs; [ - cargo rustc just git wget gcc gnumake autoconf automake pkg-config cifs-utils ntfs3g + cargo rustc just git wget gcc gnumake autoconf automake pkg-config cifs-utils ntfs3g nixd ]; - programs.nixvim.enable = true; - programs.nixvim.defaultEditor = true; + programs.nixvim = { + enable = true; + defaultEditor = true; + plugins.lsp = { + enable = true; + servers.nixd.enable = true; + }; + }; security.sudo.wheelNeedsPassword = false; networking.networkmanager.enable = true;