mirror of
https://github.com/netfun2000/hipudding-teslamate.git
synced 2026-02-27 09:44:28 +08:00
35 lines
1021 B
Nix
35 lines
1021 B
Nix
{
|
|
description = "TeslaMate Logger";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
devenv-root.url = "file+file:///dev/null";
|
|
devenv-root.flake = false;
|
|
devenv.url = "github:cachix/devenv";
|
|
treefmt-nix.url = "github:numtide/treefmt-nix";
|
|
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = inputs@{ self, flake-parts, ... }:
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
|
flake.nixosModules.default = import ./nix/module.nix { inherit self; };
|
|
|
|
systems = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-darwin"
|
|
];
|
|
|
|
# See ./nix/flake-modules/*.nix for the modules that are imported here.
|
|
imports = [
|
|
./nix/flake-modules/checks.nix
|
|
./nix/flake-modules/devenv.nix
|
|
./nix/flake-modules/formatter.nix
|
|
./nix/flake-modules/package.nix
|
|
];
|
|
};
|
|
}
|