mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-20 00:59:04 +05:30
16 lines
248 B
Nix
16 lines
248 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
inputs.treefmt-nix.flakeModule
|
|
];
|
|
|
|
perSystem = {
|
|
treefmt.config = {
|
|
projectRootFile = "flake.nix";
|
|
flakeCheck = true;
|
|
programs = {
|
|
alejandra.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|