29 lines
960 B
Nix
29 lines
960 B
Nix
# NixOps configuration for the hosts I'm doing nixpkgs dev work on
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
bat # A cat clone with syntax highlighting & Git integration
|
|
cabal2nix # Convert Cabal files into Nix build instructions
|
|
nix-prefetch-github # Prefetch sources from github
|
|
nix-prefetch-git # Prefetch sources from git
|
|
nix-review # Review pull-requests on https://github.com/NixOS/nixpkgs
|
|
nix-universal-prefetch # Uses nixpkgs fetchers to figure out hashes
|
|
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
|
|
];
|
|
};
|
|
|
|
}
|