nix fmt
This commit is contained in:
parent
27343e49bd
commit
04150f10d4
32 changed files with 475 additions and 404 deletions
|
|
@ -13,7 +13,9 @@ let
|
|||
inherit (lib) mapAttrsToList concatStringsSep;
|
||||
inherit (lib.metacfg) override-meta;
|
||||
|
||||
formatted-hosts = mapAttrsToList (name: host: "${name},${host.pkgs.stdenv.hostPlatform.system}") hosts;
|
||||
formatted-hosts = mapAttrsToList (
|
||||
name: host: "${name},${host.pkgs.stdenv.hostPlatform.system}"
|
||||
) hosts;
|
||||
|
||||
hosts-csv = writeText "hosts.csv" ''
|
||||
Name,System
|
||||
|
|
|
|||
|
|
@ -23,7 +23,10 @@ rustPlatform.buildRustPackage rec {
|
|||
doCheck = false;
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl sqlite ];
|
||||
buildInputs = [
|
||||
openssl
|
||||
sqlite
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Lightweight autonomous AI assistant infrastructure built in Rust";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue