mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 17:38:41 +08:00
20 lines
285 B
Nix
20 lines
285 B
Nix
{ pkgs, ... }:
|
|
{
|
|
projectRootFile = "flake.nix";
|
|
|
|
programs = {
|
|
deadnix = {
|
|
enable = true;
|
|
no-lambda-pattern-names = true;
|
|
};
|
|
nixfmt = {
|
|
enable = true;
|
|
package = pkgs.nixfmt-rfc-style;
|
|
};
|
|
};
|
|
|
|
settings = {
|
|
on-unmatched = "info";
|
|
};
|
|
}
|