mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
10 lines
289 B
Nix
10 lines
289 B
Nix
{ inputs, pkgs, ... }:
|
|
(inputs.treefmt-nix.lib.evalModule pkgs {
|
|
projectRootFile = "flake.nix";
|
|
programs = {
|
|
nixfmt.enable = true;
|
|
prettier.enable = true;
|
|
just.enable = true;
|
|
};
|
|
settings.formatter.nixfmt.excludes = [ "modules/home/shell/aliases.nix" ];
|
|
}).config.build
|