mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 17:49:07 +01:00
11 lines
223 B
Nix
11 lines
223 B
Nix
{ inputs, self, ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
formatter =
|
|
"${self}/treefmt.nix"
|
|
|> inputs.treefmt.lib.evalModule pkgs
|
|
|> (formatter: formatter.config.build.wrapper);
|
|
};
|
|
}
|