infrastructure/hive.nix

75 lines
1.7 KiB
Nix
Raw Normal View History

2023-05-16 23:50:06 +02:00
let
sources = import ./npins;
2023-05-22 15:08:33 +02:00
metadata = import ./meta;
lib = import (sources.nix-lib + "/src/trivial.nix");
2023-05-22 15:08:33 +02:00
2024-01-22 12:46:25 +01:00
patch = import sources.nix-patches { patchFile = ./patches; };
mkNode = node: _: {
# Import the base configuration for each node
imports = builtins.map (lib.mkRel ./machines/${node}) [
"_configuration.nix"
"_hardware-configuration.nix"
];
2023-05-22 15:08:33 +02:00
# Include default secrets
age-secrets.sources = [ ./machines/${node}/secrets ];
# Deployment config is specified in meta.nodes.${node}.deployment
inherit (metadata.nodes.${node}) deployment;
# Set NIX_PATH to the patched version of nixpkgs
nix.nixPath = [ "nixpkgs=${mkNixpkgs node}" ];
nix.optimise.automatic = true;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Use the stateVersion declared in the metadata
system = {
inherit (metadata.nodes.${node}) stateVersion;
};
};
2023-05-22 15:08:33 +02:00
mkNixpkgs =
node:
2024-01-22 12:46:25 +01:00
patch.mkNixpkgsSrc rec {
src = sources.${version};
2024-01-22 12:46:25 +01:00
version = "nixos-${metadata.nodes.${node}.nixpkgs}";
};
mkNixpkgs' = node: import (mkNixpkgs node) { };
2023-05-22 15:08:33 +02:00
###
# Function to create arguments based on the node
#
2024-02-21 17:20:26 +01:00
mkArgs = node: {
lib = import sources.nix-lib {
inherit (mkNixpkgs' node) lib;
keysRoot = ./keys;
};
2024-02-21 17:20:26 +01:00
};
2023-05-22 15:08:33 +02:00
nodes = builtins.attrNames metadata.nodes;
in
{
2023-05-16 23:50:06 +02:00
meta = {
nodeNixpkgs = lib.mapSingleFuse mkNixpkgs' nodes;
2023-05-22 15:08:33 +02:00
specialArgs = {
inherit sources;
meta = metadata;
};
2023-05-16 23:50:06 +02:00
2023-05-22 15:08:33 +02:00
nodeSpecialArgs = lib.mapSingleFuse mkArgs nodes;
2023-05-16 23:50:06 +02:00
};
defaults = _: {
2023-05-22 15:08:33 +02:00
# Import the default modules
imports = [ ./modules ];
2023-05-16 23:50:06 +02:00
};
}
// (lib.mapSingleFuse mkNode nodes)