dotfiles/nix/hardware/default.nix
Magic_RB ae75845f41
recovery-usb
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:24:38 +02:00

24 lines
491 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 ];
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";
}
];
};
}