home: Enable 'jq'

This commit is contained in:
Alexander Kobjolke 2024-02-12 21:24:07 +01:00
parent 33de3c1f70
commit d57a732a75
2 changed files with 6 additions and 0 deletions

View file

@ -14,6 +14,7 @@ in {
./programs/neovim/default.nix
./programs/emacs/default.nix
./programs/editorconfig
./programs/jq
];
programs.home-manager.enable = true;

View file

@ -0,0 +1,5 @@
{ config, lib, pkgs, ... }:
{
programs.jq = { enable = true; };
}