mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
13 lines
289 B
Nix
13 lines
289 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.profiles.amdcpu = lib.mkEnableOption "is this a host with amd cpu";
|
|
config = lib.mkIf config.swarselsystems.profiles.amdcpu {
|
|
swarselsystems.modules = {
|
|
optional = {
|
|
amdcpu = lib.mkDefault true;
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|