mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-05-07 02:16:33 +05:30
42 lines
686 B
Nix
42 lines
686 B
Nix
{
|
|
flake.modules.homeManager.shell =
|
|
{ pkgs, ... }:
|
|
{
|
|
home.file = {
|
|
".config/nvim" = {
|
|
recursive = true;
|
|
source = "${pkgs.tnvim}";
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
};
|
|
};
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
python3
|
|
nodejs
|
|
bun
|
|
pnpm
|
|
go
|
|
rustup
|
|
typescript
|
|
neovide
|
|
nil
|
|
statix
|
|
deadnix
|
|
alejandra
|
|
luarocks
|
|
gdu
|
|
gcc
|
|
wakatime-cli
|
|
];
|
|
};
|
|
};
|
|
}
|