mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-19 16:49:04 +05:30
style: format code
This commit is contained in:
@@ -1,40 +1,38 @@
|
||||
{
|
||||
flake.modules.homeManager.shell =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.file = {
|
||||
".config/nvim" = {
|
||||
recursive = true;
|
||||
source = "${pkgs.tnvim}";
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
};
|
||||
};
|
||||
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
python3
|
||||
nodejs
|
||||
bun
|
||||
pnpm
|
||||
go
|
||||
rustup
|
||||
typescript
|
||||
neovide
|
||||
nil
|
||||
statix
|
||||
deadnix
|
||||
alejandra
|
||||
luarocks
|
||||
gdu
|
||||
gcc
|
||||
wakatime-cli
|
||||
];
|
||||
flake.modules.homeManager.shell = {pkgs, ...}: {
|
||||
home.file = {
|
||||
".config/nvim" = {
|
||||
recursive = true;
|
||||
source = "${pkgs.tnvim}";
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
};
|
||||
};
|
||||
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
python3
|
||||
nodejs
|
||||
bun
|
||||
pnpm
|
||||
go
|
||||
rustup
|
||||
typescript
|
||||
neovide
|
||||
nil
|
||||
statix
|
||||
deadnix
|
||||
alejandra
|
||||
luarocks
|
||||
gdu
|
||||
gcc
|
||||
wakatime-cli
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user