Files
nixos/home/modules/development.nix
T
Greg Hellings fbd69ad63e Add process-compose directly to development
Typically I am going to be using it from a flake, directly, but there
are times when it is useful to have the command itself around.
2024-08-06 23:46:42 -05:00

16 lines
297 B
Nix

{ config, pkgs, lib, ... }:
let
packages = with pkgs; [
cargo
nixfmt-rfc-style
nixpkgs-review
process-compose
];
in with lib; {
options.greg.development = mkEnableOption "Setup necessary development packages";
config = mkIf config.greg.development {
home.packages = packages;
};
}