diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-06-08 11:47:50 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-06-08 11:47:50 -0500 |
| commit | e6765f1de5fd4eff7b6dbc84460cd6b9f614b0ce (patch) | |
| tree | 4f66a79b44156b7e7f33324f9f6cf523cadbbbcf /hosts | |
| parent | 8508be4e8c68c306b0e304959bbb02273fc2c539 (diff) | |
| download | nixos-e6765f1de5fd4eff7b6dbc84460cd6b9f614b0ce.tar.xz nixos-e6765f1de5fd4eff7b6dbc84460cd6b9f614b0ce.zip | |
decklink support
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/optiplex/configuration.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hosts/optiplex/configuration.nix b/hosts/optiplex/configuration.nix index 8563c2c..e509e83 100644 --- a/hosts/optiplex/configuration.nix +++ b/hosts/optiplex/configuration.nix @@ -55,6 +55,8 @@ # Allow unfree for nvidia + others nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ + "blackmagic-desktop-video" + "decklink" "nvidia-kernel-modules" "nvidia-settings" "nvidia-x11" @@ -85,6 +87,10 @@ forceFullCompositionPipeline = true; # Enables vsync }; + # Enable decklink support for intensity pro + services._decklink.enable = true; + services._decklink.decklinkSupport.enable = true; + # Configure home home-manager.users.timmy = { gtk._mintTheme = { |
