mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
ae75845f41
Signed-off-by: Magic_RB <magic_rb@redalder.org>
24 lines
491 B
Nix
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";
|
|
}
|
|
];
|
|
};
|
|
}
|