diff --git a/profiles/desktop/sound/pipewire.nix b/profiles/desktop/sound/pipewire.nix index 9ff8411..5e525f2 100644 --- a/profiles/desktop/sound/pipewire.nix +++ b/profiles/desktop/sound/pipewire.nix @@ -20,7 +20,8 @@ environment.systemPackages = with pkgs; [ pavucontrol # volume and defaults easyeffects # eq - helvum # patchbay + # helvum # patchbay - removed from nixpkgs + crosspipe # patchbay - TODO: helvum alternative? # carla # VST patchbay (TODO: move into a DAW profile? Can be used for midi) # TODO: build broken ]; diff --git a/users/pbsds/home/profiles/minimal/shell.nix b/users/pbsds/home/profiles/minimal/shell.nix index 5914c61..9e8a348 100644 --- a/users/pbsds/home/profiles/minimal/shell.nix +++ b/users/pbsds/home/profiles/minimal/shell.nix @@ -133,7 +133,7 @@ in home.shellAliases.fda = "fd --no-ignore --hidden"; home.shellAliases.afd = "fd --no-ignore --hidden"; - home.shellAliases.drg = lib.mkIf (config.programs.git.enable && config.programs.git.delta.enable) ( + home.shellAliases.drg = lib.mkIf (config.programs.git.enable && config.programs.delta.enable) ( # mkArgsAlias ''rg "$@" --json | delta'' mkArgsAlias ''rg "$@" --json | jq -s 'sort_by(.data.path)|.[]' -c | delta'' );