1
1
Fork 0
nixos/options/custom/settings/hardware.nix
Myned c592e0f1ab
custom: add ollama service
Signed-off-by: Myned <dev@bjork.tech>
2025-03-14 16:48:08 -05:00

27 lines
571 B
Nix

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.settings.hardware;
in {
options.custom.settings.hardware = {
enable = mkOption {default = false;};
gpu = mkOption {default = null;};
};
config = mkIf cfg.enable {
hardware = {
enableAllFirmware = config.custom.default; # Non-free firmware
# https://wiki.nixos.org/wiki/Bluetooth
bluetooth.enable = config.custom.minimal;
};
nixpkgs.config = {
cudaSupport = mkIf (cfg.gpu == "nvidia") true;
rocmSupport = mkIf (cfg.gpu == "amd") true;
};
};
}