mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-07 02:06:34 +05:30
38 lines
597 B
Nix
Executable File
38 lines
597 B
Nix
Executable File
{ inputs, pkgs, ... }: {
|
|
|
|
xdg.configFile."nvim" = {
|
|
source = "${pkgs.nvchad}";
|
|
};
|
|
|
|
programs = {
|
|
neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
|
|
viAlias = false;
|
|
vimAlias = true;
|
|
|
|
withPython3 = true;
|
|
withNodeJs = true;
|
|
};
|
|
};
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
gcc
|
|
neovide
|
|
|
|
# nix
|
|
statix # Lints and suggestions for the nix programming language
|
|
deadnix # Find and remove unused code in .nix source files
|
|
alejandra # Nix Code Formatter
|
|
|
|
# lua
|
|
luarocks
|
|
|
|
gdu
|
|
ripgrep
|
|
];
|
|
};
|
|
}
|