infrastructure/hive.nix

142 lines
3.9 KiB
Nix
Raw Normal View History

2023-05-16 23:50:06 +02:00
let
2024-10-08 18:37:17 +02:00
sources' = import ./npins;
# Patch sources directly
sources = builtins.mapAttrs (patch.base { pkgs = import sources'.nixos-unstable { }; })
.applyPatches' sources';
2023-05-22 15:08:33 +02:00
nix-lib = import ./lib/nix-lib;
inherit (nix-lib) warn;
2023-05-22 15:08:33 +02:00
2024-10-08 18:37:17 +02:00
patch = import ./lib/nix-patches { patchFile = ./patches; };
2024-01-22 12:46:25 +01:00
2024-02-23 10:50:50 +01:00
nodes' = import ./meta/nodes.nix;
nodes = builtins.attrNames nodes';
mkNode = node: {
# Import the base configuration for each node
imports = [ ./machines/${node}/_configuration.nix ];
deployment.systemType = "nixos";
};
2023-05-22 15:08:33 +02:00
nixpkgs' = import ./meta/nixpkgs.nix;
# All supported nixpkgs versions × systems, instanciated
nixpkgs = nix-lib.mapSingleFuse (
s: nix-lib.mapSingleFuse (mkSystemNixpkgs s) nixpkgs'.versions.supported
) nixpkgs'.systems.supported;
# Get the configured nixos version for the node,
# defaulting to the one defined in meta/nixpkgs
version = node: nodes'.${node}.nixpkgs.version or nixpkgs'.versions.default;
systemType =
node:
nodes'.${node}.nixpkgs.system
or (warn "${node}: Not specifying the `deployment.systemType` is deprecated!" "nixos");
# Builds a patched version of nixpkgs, only as the source
mkNixpkgs' =
v:
2024-10-08 18:37:17 +02:00
patch.mkNixpkgsSrc rec {
src = sources'.${name};
name = "nixos-${v}";
};
# Build up the nixpkgs configuration for Liminix embedded systems
mkLiminixConfig =
system: _:
(import "${sources.liminix}/devices/${system}").system
// {
overlays = [ (import "${sources.liminix}/overlay.nix") ];
config = {
allowUnsupportedSystem = true; # mipsel
permittedInsecurePackages = [
"python-2.7.18.8" # Python < 3.x is needed for kernel backports.
];
};
};
# Build up the arguments to instantiate a nixpkgs given a system and a version.
mkNixpkgsConfig =
system: version:
if system == "nixos" then
{ }
else if system == "zyxel-nwa50ax" then
(mkLiminixConfig system version)
else
(throw "Unknown system: ${system} for nixpkgs configuration instantiation");
# Instanciates the required nixpkgs version
mkSystemNixpkgs = system: version: import (mkNixpkgs' version) (mkNixpkgsConfig system version);
2023-05-22 15:08:33 +02:00
###
# Function to create arguments based on the node
#
2024-02-23 10:50:50 +01:00
mkArgs = node: rec {
lib = nixpkgs.${systemType node}.${version node}.lib // {
extra = nix-lib;
};
2023-05-22 15:08:33 +02:00
sourcePkgs = nixpkgs.${systemType node}.${version node};
2024-02-23 13:14:49 +01:00
meta = (import ./meta) lib;
2024-04-18 15:53:20 +02:00
nodeMeta = meta.nodes.${node};
2024-02-23 10:50:50 +01:00
};
in
{
2023-05-16 23:50:06 +02:00
meta = {
nodeNixpkgs = nix-lib.mapSingleFuse (n: nixpkgs.${systemType n}.${version n}) nodes;
2023-05-22 15:08:33 +02:00
specialArgs = {
inherit nixpkgs sources;
dgn-keys = import ./keys;
};
2023-05-16 23:50:06 +02:00
nodeSpecialArgs = nix-lib.mapSingleFuse mkArgs nodes;
2023-05-16 23:50:06 +02:00
};
registry = {
nixos = {
evalConfig = args: import "${args.specialArgs.sourcePkgs.path}/nixos/lib/eval-config.nix" args;
defaults =
{ name, nodeMeta, ... }:
{
# Import the default modules
imports = [
./modules
(import "${sources.lix-module}/module.nix" { inherit (sources) lix; })
];
# Include default secrets
age-secrets.sources = [ ./machines/${name}/secrets ];
# Deployment config is specified in meta.nodes.${node}.deployment
inherit (nodeMeta) deployment;
nix = {
# Set NIX_PATH to the patched version of nixpkgs
nixPath = [ "nixpkgs=${mkNixpkgs' (version name)}" ];
optimise.automatic = true;
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Use the stateVersion declared in the metadata
system = {
inherit (nodeMeta) stateVersion;
};
2024-04-15 11:36:14 +02:00
};
2024-02-23 10:50:50 +01:00
};
};
}
// (nix-lib.mapSingleFuse mkNode nodes)