ark/modules/develop/editor/default.nix

6 lines
173 B
Nix
Raw Normal View History

2022-03-09 23:55:02 +03:00
{pkgs, ...}: {
2022-02-18 20:31:01 +03:00
imports = [./helix.nix];
2022-05-21 14:17:48 +03:00
environment.systemPackages = with pkgs; [alejandra treefmt];
2022-03-09 23:55:02 +03:00
environment.shellAliases = {nixf-all = "alejandra **/**.nix";};
2020-11-21 23:54:07 +03:00
}