nix-dotfiles/hm_modules/development/nix.nix

10 lines
203 B
Nix

{ pkgs, config, lib, ... }: {
home.packages = with pkgs; [
nixpkgs-fmt
nix-prefetch-scripts
nix-review
nix-tree
] ++ lib.optionals config.programs.helix.enable [
nil
];
}