diff options
author | Ben Sima <ben@bsima.me> | 2024-03-25 10:59:18 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-03-25 10:59:18 -0400 |
commit | 4a14865b93e5fa83ac0d1c88a19d424abea22aca (patch) | |
tree | 2b57f37a2c8546380ce4db61d07cf1f5af337e5b /Biz/Dev | |
parent | aa4e970df6856a3c72e8a541d6fd511e26a2c18b (diff) |
Add some video modules for OBS
Diffstat (limited to 'Biz/Dev')
-rw-r--r-- | Biz/Dev/Beryllium/Configuration.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Biz/Dev/Beryllium/Configuration.nix b/Biz/Dev/Beryllium/Configuration.nix index 886ab01..106f78e 100644 --- a/Biz/Dev/Beryllium/Configuration.nix +++ b/Biz/Dev/Beryllium/Configuration.nix @@ -14,6 +14,9 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.kernelModules = [ "v4l2loopback" ]; + boot.extraModulePackages = [ pkgs.linuxPackages.v4l2loopback ]; + # Enable networking networking.networkmanager.enable = true; @@ -113,6 +116,8 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ + v4l-utils + linuxPackages.v4l2loopback nvtop # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # wget |