marleyos/modules/home/programs/httpie.nix
2025-05-27 17:23:47 -07:00

16 lines
253 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.marleyos.programs.httpie;
in {
options.marleyos.programs.httpie.enable = lib.mkEnableOption "httpie";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
httpie
];
};
}