2019-10-24 13:48:05 +00:00
|
|
|
# NixOps configuration for the hosts I'm doing nixpkgs dev work on
|
2022-03-07 14:26:15 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
2021-11-16 04:57:23 +00:00
|
|
|
#let
|
|
|
|
# sources = import ../nix/sources.nix;
|
|
|
|
# unstable = import sources.nixpkgsUnstable {};
|
|
|
|
#in
|
2019-10-24 13:48:05 +00:00
|
|
|
{
|
2022-03-07 14:26:15 +00:00
|
|
|
nixpkgs = {config = {allowUnfree = true;};};
|
2020-03-06 04:57:26 +00:00
|
|
|
|
2019-10-24 13:48:05 +00:00
|
|
|
environment = {
|
|
|
|
systemPackages = with pkgs; [
|
2021-11-16 04:57:23 +00:00
|
|
|
cabal2nix # Convert Cabal files into Nix build instructions
|
2024-06-01 14:58:26 +00:00
|
|
|
nixfmt-rfc-style # An opinionated formatter for Nix
|
2021-11-16 04:57:23 +00:00
|
|
|
nix-prefetch-github # Prefetch sources from github
|
|
|
|
nix-prefetch-git # Prefetch sources from git
|
2024-02-06 04:17:14 +00:00
|
|
|
nixpkgs-review # Review pull-requests on https://github.com/NixOS/nixpkgs
|
2021-11-16 04:57:23 +00:00
|
|
|
nix-top # Tracks what nix is building
|
|
|
|
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
|
|
|
|
#unstable.statix # Lints and suggestions for the nix programming language
|
2019-10-24 13:48:05 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|