This commit is contained in:
2026-02-05 21:56:39 +01:00
parent 0d7a1b06e8
commit 20665f7961
2 changed files with 13 additions and 0 deletions

View File

@@ -17,6 +17,7 @@
./programs/tmux.nix ./programs/tmux.nix
./programs/git.nix ./programs/git.nix
./programs/libreoffice.nix ./programs/libreoffice.nix
./programs/nvim.nix
./wm/rofi.nix ./wm/rofi.nix
./wm/cursor.nix ./wm/cursor.nix
./wm/dconf.nix ./wm/dconf.nix

12
programs/nvim.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.neovim = {
enable = true;
# Plugins installed via Nix
plugins = with pkgs.vimPlugins; [
];
};
}