modules.hardware.asus: disable supergfxd

This commit is contained in:
2025-11-11 10:15:17 +08:00
parent b4f97ecb42
commit beec7388ad

View File

@@ -4,7 +4,11 @@ inputs:
{ type = types.nullOr (types.submodule {}); default = null; };
config = let inherit (inputs.config.nixos.hardware) asus; in inputs.lib.mkIf (asus != null)
{
services.asusd = { enable = true; enableUserService = true; asusdConfig.source = ./asusd.ron; };
services =
{
asusd = { enable = true; enableUserService = true; asusdConfig.source = ./asusd.ron; };
supergfxd.enable = false;
};
programs.rog-control-center = { enable = true; autoStart = true; };
};
}