2019-10-24 13:48:05 +00:00
|
|
|
# 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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-10-24 13:48:05 +00:00
|
|
|
environment = {
|
|
|
|
systemPackages = with pkgs; [
|
2020-10-28 02:51:30 +00:00
|
|
|
bat # A cat clone with syntax highlighting & Git integration
|
2019-10-24 13:48:05 +00:00
|
|
|
cabal2nix # Convert Cabal files into Nix build instructions
|
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
|
|
|
|
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
|
2019-10-24 13:48:05 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|