mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 14:01:34 +01:00
9 lines
212 B
Nix
9 lines
212 B
Nix
{ inputs, pkgs, ... }:
|
|
(inputs.treefmt-nix.lib.evalModule pkgs {
|
|
projectRootFile = "flake.nix";
|
|
programs = {
|
|
nixfmt.enable = true;
|
|
prettier.enable = true;
|
|
just.enable = true;
|
|
};
|
|
}).config.build
|