17 lines
240 B
Nix
17 lines
240 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
|
||
|
];
|
||
|
}
|