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