treewide: run treefmt with mdcr/nixfmt

This commit is contained in:
Wolfgang Walther
2025-07-22 16:14:50 +02:00
parent 6c47e7d5da
commit 62fe016519
195 changed files with 1919 additions and 2002 deletions

View File

@@ -27,7 +27,11 @@ The following snippet can be used to configure IBus:
i18n.inputMethod = {
enable = true;
type = "ibus";
ibus.engines = with pkgs.ibus-engines; [ anthy hangul mozc ];
ibus.engines = with pkgs.ibus-engines; [
anthy
hangul
mozc
];
};
}
```
@@ -54,7 +58,10 @@ Available extra IBus engines are:
```nix
{
ibus.engines = with pkgs.ibus-engines; [ table table-others ];
ibus.engines = with pkgs.ibus-engines; [
table
table-others
];
}
```
@@ -85,7 +92,11 @@ The following snippet can be used to configure Fcitx:
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5.addons = with pkgs; [ fcitx5-mozc fcitx5-hangul fcitx5-m17n ];
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-hangul
fcitx5-m17n
];
};
}
```