commit e0436a2bd66102e0b4f8e57c9a31ab94bb505e29
parent 05b0956b4b8813ed5c322069ce76346e001bfc35
Author: Chris <chris@echoz.io>
Date: Fri, 31 Oct 2025 12:21:06 +0100
feat(neovim): install nixd
Diffstat:
2 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/hosts/ws/default.nix b/hosts/ws/default.nix
@@ -1,4 +1,10 @@
-{ modulesPath, sec, pkgs, nixpkgs-stable, ... }:
+{
+ modulesPath,
+ sec,
+ pkgs,
+ nixpkgs-stable,
+ ...
+}:
{
imports = [
sec.nixosModules.dot
diff --git a/modules/neovim/default.nix b/modules/neovim/default.nix
@@ -1,4 +1,8 @@
-{ lib, config, ... }:
+{
+ lib,
+ pkgs,
+ ...
+}:
{
programs.neovim = {
enable = true;
@@ -10,4 +14,8 @@
withPython3 = lib.mkDefault false;
withNodeJs = lib.mkDefault false;
};
+
+ environment.systemPackages = with pkgs; [
+ nixd
+ ];
}