treewide: drop usage of nixfmt-rfc-style alias

authored by Sandro Jäckel and committed by Alyssa Ross c19b2c3c cd2fe0d0

+6 -6
+1 -1
doc/languages-frameworks/python.section.md
··· 2121 * `pythonImportsCheck` is set. This is still a good smoke test even if `pytestCheckHook` is set. 2122 * `meta.platforms` takes the default value in many cases. 2123 It does not need to be set explicitly unless the package requires a specific platform. 2124 - * The file is formatted with `nixfmt-rfc-style`. 2125 * Commit names of Python libraries must reflect that they are Python 2126 libraries (e.g. `python313Packages.numpy: 1.11 -> 1.12` rather than `numpy: 1.11 -> 1.12`). 2127 * The current default version of python should be included
··· 2121 * `pythonImportsCheck` is set. This is still a good smoke test even if `pytestCheckHook` is set. 2122 * `meta.platforms` takes the default value in many cases. 2123 It does not need to be set explicitly unless the package requires a specific platform. 2124 + * The file is formatted with `nixfmt`. 2125 * Commit names of Python libraries must reflect that they are Python 2126 libraries (e.g. `python313Packages.numpy: 1.11 -> 1.12` rather than `numpy: 1.11 -> 1.12`). 2127 * The current default version of python should be included
+1 -1
pkgs/applications/editors/vscode/extensions/README.md
··· 7 8 * When adding a new extension, place its definition in a `default.nix` file in a directory with the extension's ID (e.g. `publisher.extension-name/default.nix`) and refer to it in `./default.nix`, e.g. `publisher.extension-name = callPackage ./publisher.extension-name { };`. 9 10 - * Currently `nixfmt-rfc-style` formatter is being used to format the VSCode extensions. 11 12 * Respect `alphabetical order` whenever adding extensions. On disorder, please, kindly open a PR re-establishing the order. 13
··· 7 8 * When adding a new extension, place its definition in a `default.nix` file in a directory with the extension's ID (e.g. `publisher.extension-name/default.nix`) and refer to it in `./default.nix`, e.g. `publisher.extension-name = callPackage ./publisher.extension-name { };`. 9 10 + * Currently `nixfmt` formatter is being used to format the VSCode extensions. 11 12 * Respect `alphabetical order` whenever adding extensions. On disorder, please, kindly open a PR re-establishing the order. 13
+1 -1
pkgs/by-name/gr/gren/update.sh
··· 1 #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p cabal2nix curl jq nix-update nixfmt-rfc-style 3 4 set -euo pipefail 5
··· 1 #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p cabal2nix curl jq nix-update nixfmt 3 4 set -euo pipefail 5
+1 -1
pkgs/by-name/ni/nixfmt-tree/package.nix
··· 95 You can achieve similar results by manually configuring `treefmt`: 96 ```nix 97 pkgs.treefmt.withConfig { 98 - runtimeInputs = [ pkgs.nixfmt-rfc-style ]; 99 100 settings = { 101 # Log level for files treefmt won't format
··· 95 You can achieve similar results by manually configuring `treefmt`: 96 ```nix 97 pkgs.treefmt.withConfig { 98 + runtimeInputs = [ pkgs.nixfmt ]; 99 100 settings = { 101 # Log level for files treefmt won't format
+1 -1
pkgs/os-specific/linux/kernel/update-xanmod.sh
··· 1 #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p bash nix-prefetch curl jq gawk gnused nixfmt-rfc-style 3 4 set -euo pipefail 5
··· 1 #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p bash nix-prefetch curl jq gawk gnused nixfmt 3 4 set -euo pipefail 5
+1 -1
pkgs/servers/x11/xorg/update.py
··· 1 #!/usr/bin/env nix-shell 2 - #!nix-shell --pure --keep NIX_PATH -i python3 -p nix git nixfmt-rfc-style "python3.withPackages (ps: [ ps. packaging ps.beautifulsoup4 ps.requests ])" 3 4 # Usage: Run ./update.py from the directory containing tarballs.list. The script checks for the 5 # latest versions of all packages, updates the expressions if any update is found, and commits
··· 1 #!/usr/bin/env nix-shell 2 + #!nix-shell --pure --keep NIX_PATH -i python3 -p nix git nixfmt "python3.withPackages (ps: [ ps. packaging ps.beautifulsoup4 ps.requests ])" 3 4 # Usage: Run ./update.py from the directory containing tarballs.list. The script checks for the 5 # latest versions of all packages, updates the expressions if any update is found, and commits