nyx/modules/nixos/hardware/cpu/default.nix
2025-01-12 22:44:11 +02:00

18 lines
278 B
Nix

{lib, ...}: let
inherit (lib) mkOption types;
in {
imports = [
./amd.nix
];
options.olympus.device.cpu = mkOption {
type = types.nullOr (
types.enum [
"amd"
"vm-amd"
]
);
default = null;
description = "CPU brand";
};
}