dotfiles/nix/hardware/default.nix
Magic_RB dac0229ede
Add tweedledum and tweedledee
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:24:38 +02:00

31 lines
605 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.magic_rb.hardware;
in
{
options = {};
imports =
[ ./heater.nix
./mark.nix
./omen.nix
./recovery-usb.nix
(import ./oci-nixos.nix "tweedledum")
(import ./oci-nixos.nix "tweedledee")
];
config = {
assertions = [
{
assertion =
let
selection = mapAttrsToList (system: enabled: { inherit system enabled; }) cfg;
in
count (x: x.enabled) selection == 1;
message = "You must select exactly one hardware configuration";
}
];
};
}