diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2025-07-11 11:26:40 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2025-07-11 11:26:40 -0500 |
commit | 635edfc0ce1ae0504f2877f846211a4fdfa6d327 (patch) | |
tree | 284874a1ea01254bd6b500122aff12123f664cc0 /modules/hosts | |
parent | 8879ac8f270cdced4a70257b2b0523f025b597b3 (diff) | |
download | nixos-635edfc0ce1ae0504f2877f846211a4fdfa6d327.tar.xz nixos-635edfc0ce1ae0504f2877f846211a4fdfa6d327.zip |
blackmagic desktop vid custom derivation and decklink support
Diffstat (limited to 'modules/hosts')
-rw-r--r-- | modules/hosts/optiplex/configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/hosts/optiplex/configuration.nix b/modules/hosts/optiplex/configuration.nix index 16ba475..625d37a 100644 --- a/modules/hosts/optiplex/configuration.nix +++ b/modules/hosts/optiplex/configuration.nix @@ -13,6 +13,7 @@ graphics.enable = true; office.enable = true; utilities.enable = true; + video.enable = true; }; software.development = { docker.enable = true; @@ -31,6 +32,9 @@ # Disable wifi wifi.enable = false; + # Enable decklink + decklink.enable = true; + # Use nvidia driver services.xserver.videoDrivers = [ "nvidia" ]; hardware.nvidia = { |