10 lines
137 B
Nix
10 lines
137 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [./editor];
|
|
environment.systemPackages = with pkgs; [git tokei];
|
|
documentation.dev.enable = true;
|
|
}
|