mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
41 lines
608 B
Nix
Executable File
41 lines
608 B
Nix
Executable File
{pkgs, ...}: {
|
|
home.file = {
|
|
".config/nvim" = {
|
|
recursive = true;
|
|
source = "${pkgs.tux-nvim-config}";
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
withPython3 = true;
|
|
withNodeJs = true;
|
|
};
|
|
};
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
gcc
|
|
neovide
|
|
|
|
# nix
|
|
nil # Language Server
|
|
statix # Lints and suggestions
|
|
deadnix # Find and remove unused
|
|
alejandra # Code Formatter
|
|
|
|
# lua
|
|
luarocks
|
|
|
|
# ts
|
|
typescript
|
|
|
|
gdu
|
|
ripgrep
|
|
];
|
|
};
|
|
}
|