From 0f49cae6535ed6de798f2239d2da5cdb7f02631a Mon Sep 17 00:00:00 2001
From: Thiago Sposito
Date: Mon, 22 Sep 2025 03:21:30 +0000
Subject: [PATCH] feat: add husky host
---
hosts/husky | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
create mode 100644 hosts/husky
diff --git a/hosts/husky b/hosts/husky
new file mode 100644
index 0000000..78eb612
--- /dev/null
+++ b/hosts/husky
@@ -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
+ ];
+ };
+ };
+}
+