NixOSConfig/lib/hardware/surface.nix

13 lines
189 B
Nix

{ pkgs, ... }: {
config = {
services = {
auto-cpufreq.enable = true;
thermald.enable = true;
};
environment.systemPackages = [
pkgs.libcamera
];
};
}