Replace lib/hosts.nix with an injected special argument containing the nix flake
This commit is contained in:
parent
8748015acc
commit
9ee8585716
@ -19,6 +19,14 @@
|
|||||||
generateNixosSystem = name: nixpkgs.lib.nixosSystem {
|
generateNixosSystem = name: nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
|
({ ... }: {
|
||||||
|
/*
|
||||||
|
Make the contents of the flake availiable to modules.
|
||||||
|
Useful for having the monitoring server scraping the
|
||||||
|
target config from all other servers automatically.
|
||||||
|
*/
|
||||||
|
_module.args._nixfiles = self;
|
||||||
|
})
|
||||||
./configuration/common
|
./configuration/common
|
||||||
({ ... }: {
|
({ ... }: {
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, _nixfiles, ... }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
hosts = (import ../../lib/hosts.nix { inherit pkgs; }).hosts;
|
hosts = _nixfiles.nixosConfigurations;
|
||||||
|
|
||||||
monitoringHosts = filterAttrs (name: host:
|
monitoringHosts = filterAttrs (name: host:
|
||||||
attrByPath ["clerie" "monitoring" "enable"] false host.config)
|
attrByPath ["clerie" "monitoring" "enable"] false host.config)
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
{ pkgs ? import ../pkgs {} }:
|
|
||||||
|
|
||||||
with pkgs.lib;
|
|
||||||
|
|
||||||
rec {
|
|
||||||
hostsDir = ../hosts;
|
|
||||||
|
|
||||||
hostNames = attrNames (
|
|
||||||
filterAttrs (
|
|
||||||
name: type: type == "directory"
|
|
||||||
) (
|
|
||||||
builtins.readDir hostsDir
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
hosts = listToAttrs (
|
|
||||||
map (
|
|
||||||
hostName: nameValuePair hostName (
|
|
||||||
import (pkgs.path + "/nixos") {
|
|
||||||
configuration = import (hostsDir + "/${hostName}/configuration.nix");
|
|
||||||
system = "x86_64-linux";
|
|
||||||
}
|
|
||||||
)
|
|
||||||
) hostNames
|
|
||||||
);
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user