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 config
inputs inputs
lib lib
self
pkgs pkgs
; ;
}) })

View file

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

View file

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