diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/optiplex/configuration.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/hosts/optiplex/configuration.nix b/hosts/optiplex/configuration.nix index 8563c2c..74d09b5 100644 --- a/hosts/optiplex/configuration.nix +++ b/hosts/optiplex/configuration.nix @@ -44,9 +44,8 @@ autologin.enable = true; nas = { enable = true; - #home.enable = true; - #home.automount = true; - office.enable = true; + home.enable = true; + home.automount = true; }; }; @@ -55,6 +54,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 +86,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 = { |
