mio-ops/profiles/nixpkgs-dev.nix

30 lines
998 B
Nix
Raw Normal View History

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