ADD : module neovim

alacritty
Alexandre LUCAZEAU 2022-06-17 08:49:02 +02:00
parent c2391e1ed3
commit 5775244354
1 changed files with 11 additions and 0 deletions

11
modules/neovim.nix Normal file
View File

@ -0,0 +1,11 @@
{ lib, config, pkgs, ... }:
let
# […]
nix-nvim = builtins.fetchGit {
url = "https://git.atlanticaweb.fr/alexandre/nix-nvim.git";
ref = "main";
};
in
{
imports = [ (import "${nix-nvim}") ];
}