19 lines
510 B
Nix
19 lines
510 B
Nix
|
{
|
||
|
description = "Homelab configuration tools";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
||
|
};
|
||
|
|
||
|
outputs = { self, flake-parts, ... }:
|
||
|
flake-parts.lib.mkFlake { inherit self; } {
|
||
|
systems = [ "x86_64-linux" "aarch64-darwin" ];
|
||
|
perSystem = { config, self', inputs', pkgs, system, ... }: {
|
||
|
devShells.default = pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [ jsonnet ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|