Files
dotFiles/pkgs/nvim-conf/default.nix
Kulvir Singh c5cb34ac1c batman nix
2025-01-06 23:24:42 +05:30

23 lines
385 B
Nix

{
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;
};
}