7 lines
180 B
Nix
7 lines
180 B
Nix
{ pkgs, ... }: {
|
|
imports = [ ./kakoune.nix ];
|
|
|
|
environment.systemPackages = with pkgs; [ nixpkgs-fmt ];
|
|
environment.shellAliases = { nixf-all = "nixpkgs-fmt **/**.nix"; };
|
|
}
|