feat: httpie
This commit is contained in:
parent
02685dc85d
commit
b3921a3dee
2 changed files with 17 additions and 0 deletions
|
@ -23,6 +23,7 @@ in {
|
|||
git = enabled;
|
||||
glow = enabled;
|
||||
gpg = enabled;
|
||||
httpie = enabled;
|
||||
hyfetch = enabled;
|
||||
journalctl = enabled;
|
||||
jq = enabled;
|
||||
|
|
16
modules/home/programs/cli/httpie/default.nix
Normal file
16
modules/home/programs/cli/httpie/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue