mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-05-07 02:16:33 +05:30
24 lines
330 B
Nix
24 lines
330 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.treefmt-nix.flakeModule
|
|
];
|
|
|
|
perSystem =
|
|
{
|
|
config,
|
|
pkgs,
|
|
system,
|
|
...
|
|
}:
|
|
{
|
|
treefmt.config = {
|
|
projectRootFile = "flake.nix";
|
|
flakeCheck = true;
|
|
programs = {
|
|
nixfmt.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|