dotfiles/nix/hardware/default.nix
Magic_RB a6572e0d4e
Properly support both tweedledee and tweedledum
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:24:39 +02:00

41 lines
898 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
{ hostName = "tweedledum";
rootUUID = "79ba4403-7532-4e2c-ac5d-2910dce62009";
efiUUID = "4478-6009";
swapUUID = "d50e7ebf-8c62-4d2d-b19d-347378f7e5fe";
})
(import ./oci-nixos.nix
{ hostName = "tweedledee";
rootUUID = "";
efiUUID = "";
swapUUID = "";
})
];
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";
}
];
};
}