NiksOS/hosts/lapserv/default.nix
Jurn Wubben c566589cc2 Updated graphics to support intel and nvidia (laptop gpu without prime)
Added immich

Updated cfile and smaller changes

Updated transfer-sh password
2025-04-17 17:59:44 +00:00

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
'';
}