chore: format repo using treefmt-nix and nixfmt-rfc-style

This commit is contained in:
Andre
2025-06-04 12:11:03 -04:00
parent fc7c471412
commit 51e51e6014
266 changed files with 3721 additions and 2733 deletions

View File

@@ -14,37 +14,39 @@ in
config = lib.mkIf cfg.enable {
hardware.deviceTree = {
overlays = [{
name = "pwm-overlay";
dtsText = ''
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2711";
overlays = [
{
name = "pwm-overlay";
dtsText = ''
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2711";
fragment@0 {
target = <&gpio>;
__overlay__ {
pwm_pins: pwm_pins {
brcm,pins = <18>;
brcm,function = <2>; /* Alt5 */
fragment@0 {
target = <&gpio>;
__overlay__ {
pwm_pins: pwm_pins {
brcm,pins = <18>;
brcm,function = <2>; /* Alt5 */
};
};
};
};
fragment@1 {
target = <&pwm>;
__overlay__ {
pinctrl-names = "default";
assigned-clock-rates = <100000000>;
status = "okay";
pinctrl-0 = <&pwm_pins>;
fragment@1 {
target = <&pwm>;
__overlay__ {
pinctrl-names = "default";
assigned-clock-rates = <100000000>;
status = "okay";
pinctrl-0 = <&pwm_pins>;
};
};
};
};
'';
}];
};
'';
}
];
};
};
}