26 lines
485 B
Nix
26 lines
485 B
Nix
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
niksos = {
|
|
server = true;
|
|
graphics.nvidia = true;
|
|
graphics.intel = true;
|
|
};
|
|
|
|
services.immich = {
|
|
# settings.ffmepg.accel = "nvenc";
|
|
settings.ffmpeg.preferredHwDevice = "/dev/dri/renderD128";
|
|
accelerationDevices = [
|
|
"/dev/dri/renderD128"
|
|
];
|
|
};
|
|
|
|
systemd.sleep.extraConfig = ''
|
|
AllowSuspend=no
|
|
AllowHibernation=no
|
|
AllowHybridSleep=no
|
|
AllowSuspendThenHibernate=no
|
|
'';
|
|
}
|