12 lines
147 B
Nix
12 lines
147 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
# Language servers
|
|
nixd
|
|
nil
|
|
# Formatters
|
|
nixfmt-rfc-style
|
|
];
|
|
}
|