From 6b56dbe4042b20e6ff6da3ff1b57ec9bfabf2c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 3 Feb 2026 17:37:37 +0100 Subject: [PATCH] vim: actually install --- modules/vim.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/vim.nix b/modules/vim.nix index 4dce530..7d835da 100644 --- a/modules/vim.nix +++ b/modules/vim.nix @@ -4,4 +4,8 @@ environment.shellAliases.vi = "nvim"; environment.shellAliases.vim = "nvim"; environment.shellAliases.view = "nvim -R"; + + environment.systemPackages = [ + pkgs.vim-kmein + ]; }