Fix Neovim imports in WSL

This commit is contained in:
Oliver Davies 2024-11-27 18:18:23 +00:00
parent 5ebf83a334
commit 0e2a86abb6
3 changed files with 28 additions and 11 deletions

View file

@ -48,6 +48,7 @@
config
inputs
lib
self
pkgs
;
})

View file

@ -1,8 +1,23 @@
{ ... }:
{
config,
inputs,
lib,
self,
pkgs,
...
}:
{
imports = [
./features/cli
(import ./features/cli {
inherit
config
inputs
lib
self
pkgs
;
})
./features/desktop
];
}

View file

@ -3,19 +3,21 @@
inputs,
lib,
pkgs,
self,
...
}:
{
imports = [
# (import ./neovim.nix {
# inherit
# config
# inputs
# lib
# pkgs
# ;
# })
(import ./neovim.nix {
inherit
config
inputs
lib
pkgs
self
;
})
./bat.nix
./bin.nix
@ -25,7 +27,6 @@
./git.nix
./htop.nix
./lsd.nix
./neovim.nix
./pet.nix
./phpactor.nix
./ripgrep.nix