24 lines
374 B
Nix
24 lines
374 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./python/default.nix
|
||
|
./lua/default.nix
|
||
|
];
|
||
|
home.packages = with pkgs; [
|
||
|
## Linters
|
||
|
shellcheck
|
||
|
yamllint
|
||
|
|
||
|
## Formatters
|
||
|
nixfmt-rfc-style
|
||
|
shfmt
|
||
|
nodePackages.prettier
|
||
|
nodePackages.prettier-plugin-toml
|
||
|
|
||
|
## Language servers
|
||
|
nixd
|
||
|
rust-analyzer
|
||
|
nodePackages.typescript-language-server
|
||
|
];
|
||
|
}
|