Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Icy-Thought/snowflake
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5de230de26bd4696c5820e84a19a3ab08016b775
Choose a base ref
..
head repository: Icy-Thought/snowflake
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 137912ec7cb262050487752b09954311ddfd86ea
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +3 −3 modules/desktop/toolset/recorder.nix
6 changes: 3 additions & 3 deletions modules/desktop/toolset/recorder.nix
Original file line number Diff line number Diff line change
@@ -9,8 +9,8 @@
inherit (lib.options) mkEnableOption;
in {
enable = mkEnableOption false;
audio.enable = mkEnableOption "audio manipulation" // {default = true;};
video.enable = mkEnableOption "video manipulation" // {default = true;};
audio.enable = mkEnableOption "audio manipulation";
video.enable = mkEnableOption "video manipulation";
};

config = let
@@ -26,7 +26,7 @@
inherit (pkgs) ffmpeg;
}
// optionalAttrs cfg.audio.enable {
inherit (pkgs.unstable) audacity-gtk3 helvum;
inherit (pkgs.unstable) audacity helvum;
}
// optionalAttrs cfg.video.enable {
inherit (pkgs.unstable) obs-studio;