feat: add husky host

This commit is contained in:
Thiago Sposito 2025-09-22 03:21:30 +00:00
parent 2c0562ab30
commit 0f49cae653

29
hosts/husky Normal file
View file

@ -0,0 +1,29 @@
{
description = "Nix on Debian config";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }:
let
system = "aarch64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
git
curl
];
};
packages.${system}.default = pkgs.buildEnv {
name = "my-env";
paths = [
pkgs.htop
pkgs.jq
];
};
};
}