.dotfiles/profiles/nixos/amdcpu/default.nix
2025-07-22 21:35:22 +02:00

13 lines
265 B
Nix

{ lib, config, ... }:
{
options.swarselprofiles.amdcpu = lib.mkEnableOption "is this a host with amd cpu";
config = lib.mkIf config.swarselprofiles.amdcpu {
swarselmodules = {
optional = {
amdcpu = lib.mkDefault true;
};
};
};
}