feat: isolate nvim config

This commit is contained in:
tux
2025-02-27 16:01:49 +05:30
parent e1553de0ad
commit 5a820f6457
376 changed files with 17 additions and 8378 deletions

22
default.nix Normal file
View File

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