Use nixpkgs-fmt insted of alejandra

This commit is contained in:
2025-07-07 18:05:55 +02:00
parent 88998315d3
commit bf7732761b
+1 -1
View File
@@ -38,7 +38,7 @@
packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system});
# Formatter for your nix files, available through 'nix fmt'
# Other options beside 'alejandra' include 'nixpkgs-fmt'
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.nixpkgs-fmt);
# Your custom packages and modifications, exported as overlays
overlays = import ./overlays {inherit inputs;};