batman nix

This commit is contained in:
Kulvir Singh
2025-01-05 03:15:23 +05:30
parent 149fd7ac90
commit c5cb34ac1c
88 changed files with 838 additions and 1946 deletions

View File

@@ -0,0 +1,22 @@
{
stdenv,
lib,
}: let
nvim = ./nvim;
in
stdenv.mkDerivation {
pname = "lilj-nvim-config";
version = "1.0.0";
buildCommand = ''
mkdir -p $out
cp -r ${nvim}/* "$out/"
'';
meta = with lib; {
description = "lilJ's nvim config";
homepage = "https://kulvir.gg";
platforms = platforms.all;
license = licenses.gpl3;
};
}