mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 11:30:20 +00:00
18 lines
261 B
Nix
18 lines
261 B
Nix
|
{lib, ...}: let
|
||
|
inherit (lib) mkOption types;
|
||
|
in {
|
||
|
imports = [
|
||
|
./amd.nix
|
||
|
];
|
||
|
|
||
|
options.olympus.device.cpu = mkOption {
|
||
|
type = types.nullOr (
|
||
|
types.enum [
|
||
|
"amd"
|
||
|
]
|
||
|
);
|
||
|
default = null;
|
||
|
description = "CPU brand";
|
||
|
};
|
||
|
}
|