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