aboutsummaryrefslogtreecommitdiffstats
path: root/home/nvim/default.nix
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2025-12-01 07:52:10 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2025-12-01 07:52:10 +0200
commit43871910aed3eeb2f2981b723013981870ad8833 (patch)
treef893655e094685c129aa3b68cf690ae6627220c2 /home/nvim/default.nix
parentdbb4480f0ff6ef5086460c6bd77bb84ea6055785 (diff)
downloadnixos-43871910aed3eeb2f2981b723013981870ad8833.tar.zst
Update general evaluation and use inbuild mail systemd file
Diffstat (limited to 'home/nvim/default.nix')
-rw-r--r--home/nvim/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/home/nvim/default.nix b/home/nvim/default.nix
index 038d8d6..5f90be4 100644
--- a/home/nvim/default.nix
+++ b/home/nvim/default.nix
@@ -1,4 +1,4 @@
-{ pkgs, pkgs-unstable, ... }:
+{ unstable, ... }:
{
programs.neovim =
@@ -12,7 +12,7 @@
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
- extraPackages = with pkgs-unstable; [
+ extraPackages = with unstable; [
inotify-tools
# debuggers
@@ -54,7 +54,7 @@
ps.debugpy
ps.pynvim
];
- plugins = with pkgs-unstable.vimPlugins; [
+ plugins = with unstable.vimPlugins; [
{
plugin = nvim-dap;
config = toLuaFile ./plugins/dap.lua;