timer fix?

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-06-25 15:11:07 +02:00
parent 2513906a22
commit 6914a99658
2 changed files with 60 additions and 33 deletions

View File

@@ -57,17 +57,15 @@ in
extraModprobeConfig = ''options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1'';
};
} else { # NxACE
kernelPackages = pkgs.linuxPackages_latest;
extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
boot.loader.grub = {
enable = true;
configurationLimit = 30;
device = "nodev";
# useOSProber = true;
efiSupport = true;
fontSize = 50;
efi.canTouchEfiVariables = true;
splashImage = null;
boot = {
loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
device = "nodev";
efiSupport = true;
};
};
};
};
}