1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-02 19:53:07 +00:00
This commit is contained in:
Rae 5e 2025-01-25 00:39:16 -05:00
parent c38f040574
commit 1ca14c360e
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
2 changed files with 12 additions and 1 deletions

View file

@ -1,9 +1,18 @@
{ pkgs, inputs, ... }:
{ config, pkgs, inputs, ... }:
{
imports = [
../packages.nix
];
boot = {
extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
extraModprobeConfig = ''
options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1
'';
};
security.polkit.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs = {
config.allowUnfree = true;