feat(goliath): refactor, make fans sane

This commit is contained in:
Kat Inskip 2024-01-26 15:32:38 -08:00
parent 67f6cccf47
commit 69d4363c8c
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
18 changed files with 178 additions and 335 deletions

View file

@ -1,15 +0,0 @@
{lib, ...}: let
inherit (lib.options) mkOption;
inherit (lib.types) enum;
in {
options.machine = {
cpuVendor = mkOption {
type = enum [
"intel"
"amd"
"apple"
];
description = "CPU vendor";
};
};
}