Add libcamera to surface

This commit is contained in:
Manuel Thalmann 2024-05-21 10:40:54 +02:00
parent ab1f959075
commit c80bd39c65

View file

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