mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-05 21:26:33 +05:30
1.7 KiB
1.7 KiB
tux's neovim config
Installation
# Add to your flake inputs
tnvim = {
url = "github:tuxdotrs/tnvim";
inputs.nixpkgs.follows = "nixpkgs";
};
# Add this in your HomeManager config
{ inputs, ... }: {
home.file = {
".config/nvim" = {
recursive = true;
source = "${inputs.tnvim.packages.x86_64-linux.default}";
};
};
}