mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-06 17:56:35 +05:30
change nvim package name
This commit is contained in:
@ -1,6 +1,9 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
xdg.configFile."nvim" = {
|
home.file = {
|
||||||
source = "${pkgs.nvchad}";
|
".config/nvim" = {
|
||||||
|
recursive = true;
|
||||||
|
source = "${pkgs.tux-nvim-config}";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
tux-awesome-wm-config = pkgs.callPackage ./awesome {};
|
tux-awesome-wm-config = pkgs.callPackage ./awesome {};
|
||||||
nvchad = pkgs.callPackage ./nvchad {};
|
tux-nvim-config = pkgs.callPackage ./nvim {};
|
||||||
astronvim = pkgs.callPackage ./astronvim {};
|
astronvim = pkgs.callPackage ./astronvim {};
|
||||||
firefox-mod-blur = pkgs.callPackage ./firefox-mod-blur {};
|
firefox-mod-blur = pkgs.callPackage ./firefox-mod-blur {};
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
nvim = ./nvim;
|
nvim = ./nvim;
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "nvchad";
|
pname = "tux-nvim-config";
|
||||||
version = "2.5.0";
|
version = "2.5.0";
|
||||||
|
|
||||||
buildCommand = ''
|
buildCommand = ''
|
||||||
@ -14,8 +14,8 @@ in
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "NvChad";
|
description = "tux's nvim config";
|
||||||
homepage = "https://github.com/NvChad/NvChad";
|
homepage = "https://tux.rs";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
};
|
};
|
Reference in New Issue
Block a user