nixos/configuration/Vanguard.nix

16 lines
424 B
Nix
Raw Normal View History

{config, ...}: {
imports = [./desktop.nix ./games.nix];
boot = {
initrd.kernelModules = ["amdgpu"];
extraModulePackages = with config.boot.kernelPackages; [v4l2loopback];
extraModprobeConfig = ''
options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1
'';
};
hardware.opengl = {
driSupport = true;
driSupport32Bit = true;
};
2024-02-23 12:05:15 +00:00
services.ollama.enable = true;
}