diff options
| author | scouckel <james.krinsky@gmail.com> | 2026-04-05 20:57:53 -0400 |
|---|---|---|
| committer | scouckel <james.krinsky@gmail.com> | 2026-04-05 20:57:53 -0400 |
| commit | dd42457fd66328d1ac850498bba865c721db6075 (patch) | |
| tree | 01b1d9fbe4d6f90aa3f9fcea05f3962001cb9562 /modules/packages/nvf/package.nix | |
| parent | 9a58c5f1857549f17e98adc9e385e4c4fb20d53a (diff) | |
merge things idk
Diffstat (limited to 'modules/packages/nvf/package.nix')
| -rw-r--r-- | modules/packages/nvf/package.nix | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/modules/packages/nvf/package.nix b/modules/packages/nvf/package.nix index 8189d29..cac61d2 100644 --- a/modules/packages/nvf/package.nix +++ b/modules/packages/nvf/package.nix @@ -1,11 +1,9 @@ -{ - inputs, - ... -}: { +{inputs, ...}: { perSystem = {pkgs, ...}: { - packages.neovim = (inputs.nvf.lib.neovimConfiguration { - inherit pkgs; - modules = [ ./_nvfConfig.nix ]; - }).neovim; + packages.neovim = + (inputs.nvf.lib.neovimConfiguration { + inherit pkgs; + modules = [./_nvfConfig.nix]; + }).neovim; }; } |
