mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-08-05 05:46:33 +05:30
17 lines
247 B
Nix
17 lines
247 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.treefmt-nix.flakeModule
|
|
];
|
|
|
|
perSystem = {
|
|
treefmt.config = {
|
|
projectRootFile = "flake.nix";
|
|
flakeCheck = true;
|
|
programs = {
|
|
nixfmt.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|