15 lines
269 B
Nix
15 lines
269 B
Nix
{
|
|
modules.device = {
|
|
type = "laptop";
|
|
cpu = {
|
|
type = "amd";
|
|
amd.pstate.enable = true;
|
|
amd.zenpower.enable = true;
|
|
};
|
|
gpu.type = "amd";
|
|
monitors = ["eDP-1"];
|
|
hasBluetooth = true;
|
|
hasSound = true;
|
|
hasTPM = true;
|
|
};
|
|
}
|