summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/optiplex/configuration.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/optiplex/configuration.nix b/hosts/optiplex/configuration.nix
index f3b0f2a..7c2298e 100644
--- a/hosts/optiplex/configuration.nix
+++ b/hosts/optiplex/configuration.nix
@@ -52,6 +52,8 @@
# Allow unfree for nvidia + others
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
+ "blackmagic-desktop-video"
+ "decklink"
"nvidia-x11"
"nvidia-settings"
"spotify"
@@ -75,6 +77,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 = {
@@ -85,5 +91,7 @@
programs._seasonalwallpaper.wallpapers.download = true;
};
+ networking.firewall.allowedTCPPorts = [ 8080 8081 ];
+
system.stateVersion = "24.11";
}