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