mio-ops/profiles/nixpkgs-dev.nix

25 lines
780 B
Nix
Raw Normal View History

# NixOps configuration for the hosts I'm doing nixpkgs dev work on
2022-03-08 00:26:15 +10:00
{
config,
pkgs,
lib,
...
}: {
2022-03-08 00:26:15 +10:00
nixpkgs = {config = {allowUnfree = true;};};
2020-03-06 14:57:26 +10:00
environment = {
systemPackages = with pkgs; [
2021-11-16 14:57:23 +10:00
cabal2nix # Convert Cabal files into Nix build instructions
nixfmt-rfc-style # An opinionated formatter for Nix
2021-11-16 14:57:23 +10:00
nix-prefetch-github # Prefetch sources from github
nix-prefetch-git # Prefetch sources from git
nixpkgs-review # Review pull-requests on https://github.com/NixOS/nixpkgs
2021-11-16 14:57:23 +10:00
nix-top # Tracks what nix is building
nodePackages.node2nix # Generate Nix expressions to build NPM packages
nox # Tools to make Nix nicer
sqlite # To query the nixpkgs sqlite database
tig # Text-mode interface for git
];
};
}