Skip to content

Commit

Permalink
Merge pull request NixOS#326832 from Scrumplex/root/devShell/nixpkgs-…
Browse files Browse the repository at this point in the history
…review

root: add nixpkgs-review to shell.nix
  • Loading branch information
infinisil authored Aug 7, 2024
2 parents 1e7877f + f696c96 commit 15ae9a1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,17 @@ let

pkgs = import nixpkgs {
inherit system;
config = {};
overlays = [];
config = { };
overlays = [ ];
};
in
pkgs.mkShellNoCC {
packages = [
packages = with pkgs; [
# The default formatter for Nix code
# https://github.com/NixOS/nixfmt
pkgs.nixfmt-rfc-style
# See https://github.com/NixOS/nixfmt
nixfmt-rfc-style
# Helper to review Nixpkgs PRs
# See CONTRIBUTING.md
nixpkgs-review
];
}

0 comments on commit 15ae9a1

Please sign in to comment.