change nvim package name

This commit is contained in:
2024-08-06 01:02:43 +05:30
parent 2f852eed2f
commit a7170ecbe6
20 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,9 @@
{pkgs, ...}: {
xdg.configFile."nvim" = {
source = "${pkgs.nvchad}";
home.file = {
".config/nvim" = {
recursive = true;
source = "${pkgs.tux-nvim-config}";
};
};
programs = {

View File

@ -1,6 +1,6 @@
{pkgs, ...}: {
tux-awesome-wm-config = pkgs.callPackage ./awesome {};
nvchad = pkgs.callPackage ./nvchad {};
tux-nvim-config = pkgs.callPackage ./nvim {};
astronvim = pkgs.callPackage ./astronvim {};
firefox-mod-blur = pkgs.callPackage ./firefox-mod-blur {};
}

View File

@ -5,7 +5,7 @@
nvim = ./nvim;
in
stdenv.mkDerivation {
pname = "nvchad";
pname = "tux-nvim-config";
version = "2.5.0";
buildCommand = ''
@ -14,8 +14,8 @@ in
'';
meta = with lib; {
description = "NvChad";
homepage = "https://github.com/NvChad/NvChad";
description = "tux's nvim config";
homepage = "https://tux.rs";
platforms = platforms.all;
license = licenses.gpl3;
};