Files
dotFiles/pkgs/nvim-conf/default.nix

23 lines
385 B
Nix
Raw Normal View History

2025-01-05 03:15:23 +05:30
{
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;
};
}