.dotfiles/profiles/nixos/amdgpu/default.nix
2025-04-30 19:34:28 +02:00

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;
};
};
};
}