tesla-mate-container/flake.nix

18 lines
401 B
Nix
Raw Permalink Normal View History

2023-07-22 10:30:59 -07:00
{
description = "TeslaMate running in a container";
inputs = {
2024-01-05 17:11:38 -08:00
nixpkgs.url = "nixpkgs/nixos-23.11";
2023-07-22 10:30:59 -07:00
arion.url = "github:hercules-ci/arion";
};
outputs = { self, nixpkgs, arion, ... }: {
nixosModules = rec {
default = teslaMateContainer;
teslaMateContainer = { ... }: {
imports = [ arion.nixosModules.arion ./tesla-mate-container.nix ];
};
};
};
}