21 lines
342 B
Nix
21 lines
342 B
Nix
{ lib }:
|
|
let
|
|
supportedSystems = [
|
|
"aarch64-darwin"
|
|
"x86_64-darwin"
|
|
"x86_64-linux"
|
|
];
|
|
in
|
|
{
|
|
inherit supportedSystems;
|
|
|
|
forAllSystems = f: lib.genAttrs supportedSystems f;
|
|
|
|
companySessionVariables = {
|
|
BAO_ADDR = "https://secrets.api.nodeiwest.se";
|
|
SOME_REGISTRY = "git.dgren.dev";
|
|
};
|
|
|
|
stateVersion = "24.11";
|
|
}
|