diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-24 11:51:39 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-24 11:51:39 -0400 |
commit | d639c293ad1ba71008aeb5c54c40f59a076018dc (patch) | |
tree | e832a3f0ee5044c8b35e5642f07a62137bbffc2c /home/neovim/default.nix | |
parent | update ssh config (diff) | |
download | dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.tar.gz dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.tar.bz2 dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.zip |
redo lib, make global vars for key lists
Diffstat (limited to 'home/neovim/default.nix')
-rw-r--r-- | home/neovim/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/neovim/default.nix b/home/neovim/default.nix index c1ed000..559bdf0 100644 --- a/home/neovim/default.nix +++ b/home/neovim/default.nix @@ -1,11 +1,11 @@ { - inputs, config, lib, pkgs, + self, ... }: let - lua_cfg = import ./config.nix {inherit config inputs;}; + lua_cfg = import ./config.nix {inherit config self;}; lua = builtins.readFile ./init.lua; in { environment.variables.EDITOR = "nvim"; |