2023-05-16 23:50:06 +02:00
|
|
|
let
|
|
|
|
sources = import ./npins;
|
2023-05-22 15:08:33 +02:00
|
|
|
|
2023-09-11 11:18:15 +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: {
|
2024-02-02 10:51:31 +01:00
|
|
|
# Import the base configuration for each node
|
2024-02-23 10:50:50 +01:00
|
|
|
imports = builtins.map (lib.mkRel (./machines/${node})) [
|
2024-02-02 10:51:31 +01:00
|
|
|
"_configuration.nix"
|
|
|
|
"_hardware-configuration.nix"
|
|
|
|
];
|
|
|
|
};
|
2023-05-22 15:08:33 +02:00
|
|
|
|
2024-04-03 21:21:04 +02:00
|
|
|
nixpkgs' = import ./meta/nixpkgs.nix;
|
|
|
|
# All supported nixpkgs versions, instanciated
|
|
|
|
nixpkgs = lib.mapSingleFuse mkNixpkgs nixpkgs'.supported;
|
|
|
|
|
|
|
|
# Get the configured nixos version for the node,
|
|
|
|
# defaulting to the one defined in meta/nixpkgs
|
|
|
|
version = node: nodes'.${node}.nixpkgs or nixpkgs'.default;
|
|
|
|
|
|
|
|
# Builds a patched version of nixpkgs, only as the source
|
|
|
|
mkNixpkgs' =
|
|
|
|
v:
|
|
|
|
let
|
|
|
|
version = "nixos-${v}";
|
|
|
|
in
|
2024-04-03 19:21:40 +02:00
|
|
|
patch.mkNixpkgsSrc {
|
2023-07-02 17:16:17 +02:00
|
|
|
src = sources.${version};
|
2024-04-03 19:21:40 +02:00
|
|
|
inherit version;
|
2023-07-02 17:16:17 +02:00
|
|
|
};
|
|
|
|
|
2024-04-03 21:21:04 +02:00
|
|
|
# Instanciates the required nixpkgs version
|
|
|
|
mkNixpkgs = version: import (mkNixpkgs' version) { };
|
2023-05-22 15:08:33 +02:00
|
|
|
|
2023-10-04 09:23:48 +02:00
|
|
|
###
|
|
|
|
# Function to create arguments based on the node
|
|
|
|
#
|
2024-02-23 10:50:50 +01:00
|
|
|
mkArgs = node: rec {
|
2024-02-21 17:20:26 +01:00
|
|
|
lib = import sources.nix-lib {
|
2024-04-03 21:21:04 +02:00
|
|
|
inherit (nixpkgs.${version node}) lib;
|
2024-02-21 17:20:26 +01:00
|
|
|
|
|
|
|
keysRoot = ./keys;
|
2023-10-04 09:23:48 +02:00
|
|
|
};
|
2023-05-22 15:08:33 +02:00
|
|
|
|
2024-02-23 13:14:49 +01:00
|
|
|
meta = (import ./meta) lib;
|
2024-02-23 10:50:50 +01:00
|
|
|
};
|
2024-02-02 10:51:31 +01:00
|
|
|
in
|
2024-04-03 21:21:04 +02:00
|
|
|
|
2024-02-02 10:51:31 +01:00
|
|
|
{
|
2023-05-16 23:50:06 +02:00
|
|
|
meta = {
|
2024-04-03 21:21:04 +02:00
|
|
|
nodeNixpkgs = lib.mapSingleFuse (n: nixpkgs.${version n}) nodes;
|
2023-05-22 15:08:33 +02:00
|
|
|
|
2023-10-04 09:23:48 +02:00
|
|
|
specialArgs = {
|
2024-04-03 21:21:04 +02:00
|
|
|
inherit nixpkgs sources;
|
2023-10-04 09:23:48 +02:00
|
|
|
};
|
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-02-23 10:50:50 +01:00
|
|
|
defaults =
|
2024-02-23 11:05:42 +01:00
|
|
|
{ meta, name, ... }:
|
2024-02-23 10:50:50 +01:00
|
|
|
{
|
|
|
|
# Import the default modules
|
|
|
|
imports = [ ./modules ];
|
|
|
|
|
|
|
|
# Include default secrets
|
|
|
|
age-secrets.sources = [ (./machines + "/${name}/secrets") ];
|
|
|
|
|
|
|
|
# Deployment config is specified in meta.nodes.${node}.deployment
|
|
|
|
inherit (meta.nodes.${name}) deployment;
|
|
|
|
|
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 = {
|
|
|
|
inherit (meta.nodes.${name}) stateVersion;
|
|
|
|
};
|
|
|
|
};
|
2024-02-02 10:51:31 +01:00
|
|
|
}
|
|
|
|
// (lib.mapSingleFuse mkNode nodes)
|