infrastructure/hive.nix

157 lines
3.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
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; };
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
2024-02-23 10:50:50 +01:00
imports = builtins.map (lib.mkRel (./machines/${node})) [
"_configuration.nix"
"_hardware-configuration.nix"
];
};
2023-05-22 15:08:33 +02:00
nixpkgs' = import ./meta/nixpkgs.nix;
# All supported nixpkgs versions, instanciated
nixpkgs = lib.mapSingleFuse (
s: 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 or nixpkgs'.versions.default;
system = node: nodes'.${node}.system or nixpkgs'.systems.default;
# Builds a patched version of nixpkgs, only as the source
mkNixpkgs' =
v:
let
version = "nixos-${v}";
in
patch.mkNixpkgsSrc {
src = sources.${version};
inherit version;
};
# Instanciate a specialized version of nixpkgs
mkSystemNixpkgs =
system: version:
let
args =
if system == "nixos" then
{ }
else
(import "${sources.liminix}/devices/${system}").system
// {
overlays = [ (import "${sources.liminix}/overlay.nix") ];
config = {
allowUnsupportedSystem = true; # mipsel
permittedInsecurePackages = [
"python-2.7.18.8" # Python < 3 is needed for kernel backports.
];
};
};
in
import (mkNixpkgs' version) args;
2023-05-22 15:08:33 +02:00
###
# Function to create arguments based on the node
#
mkArgs =
node:
let
pkgs = nixpkgs.${system node};
in
rec {
lib = import sources.nix-lib {
inherit (pkgs.${version node}) lib;
2024-02-21 17:20:26 +01:00
nixpkgs = pkgs;
2023-05-22 15:08:33 +02:00
keysRoot = ./keys;
};
2024-04-18 15:53:20 +02:00
meta = (import ./meta) lib;
2024-05-12 23:25:26 +02:00
nodeMeta = meta.nodes.${node};
};
in
{
2024-05-12 23:25:26 +02:00
registry = {
liminix = {
evalConfig = import "${sources.liminix}/lib/eval-config.nix" { nixpkgs = sources.nixos-unstable; };
2024-05-12 23:25:26 +02:00
};
};
2023-05-16 23:50:06 +02:00
meta = {
nodeNixpkgs = lib.mapSingleFuse (n: nixpkgs.${system n}.${version n}) nodes;
2023-05-22 15:08:33 +02:00
specialArgs = {
inherit sources;
};
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
};
2024-05-12 23:25:26 +02:00
registry.nixos.defaults =
{ nodeMeta, name, ... }:
2024-02-23 10:50:50 +01:00
{
# Import the default modules
imports = [ ./modules ];
# Include default secrets
2024-04-18 16:06:43 +02:00
age-secrets.sources = [ ./machines/${name}/secrets ];
2024-02-23 10:50:50 +01:00
# Deployment config is specified in meta.nodes.${node}.deployment
2024-04-18 15:53:20 +02:00
inherit (nodeMeta) deployment;
2024-02-23 10:50:50 +01:00
2024-04-15 11:36:14 +02:00
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";
};
};
2024-02-23 10:50:50 +01:00
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Use the stateVersion declared in the metadata
system = {
2024-04-18 15:53:20 +02:00
inherit (nodeMeta) stateVersion;
2024-02-23 10:50:50 +01:00
};
};
2024-05-12 23:25:26 +02:00
ap01 =
let
device = import "${sources.liminix}/devices/zyxel-nwa50ax";
in
{
deployment.systemType = "liminix";
nixpkgs.hostPlatform = {
config = "mipsel-unknown-linux-musl";
gcc = {
abi = "32";
arch = "mips32"; # mips32r2?
};
};
nixpkgs.buildPlatform = "x86_64-linux";
imports = [
./machines/ap/configuration.nix
device.module
];
};
}
// (lib.mapSingleFuse mkNode nodes)