feat: make sure nvidia settings for cachyos don't load in nvk specialization.

This commit is contained in:
CronyAkatsuki 2026-03-04 19:04:24 +01:00
parent 280d9e4696
commit 9c6ba11603

View file

@ -1,6 +1,5 @@
{
config,
inputs,
lib,
...
}: {
@ -11,7 +10,7 @@
config = lib.mkIf config.crony.cachyos.settings.enable {
cachyos.settings = {
enable = true;
nvidia.enable = true;
nvidia.enable = lib.mkIf (config.specialisation != {}) true;
};
};
}