19 lines
283 B
Nix
19 lines
283 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
cachix
|
|
nix-output-monitor
|
|
nix-prefetch
|
|
nix-top
|
|
#nix-index
|
|
nix-tree
|
|
#nix-search # TODO: exists?
|
|
nix-diff
|
|
#comma
|
|
nixfmt
|
|
alejandra
|
|
#nixpkgs-hammering
|
|
#nixpkgs-review
|
|
];
|
|
}
|