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