ark/profiles/develop/editor/default.nix

7 lines
170 B
Nix
Raw Normal View History

2020-11-21 23:54:07 +03:00
{ pkgs, ... }: {
imports = [ ./kakoune.nix ];
environment.systemPackages = with pkgs; [ nixfmt ];
environment.shellAliases = { nixf-all = "nixfmt **/**.nix"; };
}