init
This commit is contained in:
commit
6822350a3b
11 changed files with 1055 additions and 0 deletions
342
deemz.org/configuration.nix
Normal file
342
deemz.org/configuration.nix
Normal file
|
|
@ -0,0 +1,342 @@
|
|||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
|
||||
{ config, pkgs, ... }:
|
||||
let secrets = import ../secrets.nix; in
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
hardware.firmware = [
|
||||
(
|
||||
pkgs.runCommand "edid.bin" { } ''
|
||||
mkdir -p $out/lib/firmware/edid
|
||||
cp ${./nec-v462-edid-patched.bin} $out/lib/firmware/edid/edid.bin
|
||||
''
|
||||
)
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
#boot.loader.grub.device = "/dev/sda";
|
||||
boot.loader.grub.configurationLimit = 10;
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
console = {
|
||||
font = "Lat2-Terminus16";
|
||||
keyMap = "us";
|
||||
};
|
||||
|
||||
services.fwupd.enable = true;
|
||||
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver.enable = true;
|
||||
# Enable the GNOME Desktop Environment.
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
services.xserver.videoDrivers = [ "modesetting" ];
|
||||
services.xserver.deviceSection = ''
|
||||
Option "TearFree" "true"
|
||||
'';
|
||||
|
||||
services.displayManager.autoLogin = {
|
||||
enable = true;
|
||||
user= "maestro";
|
||||
};
|
||||
services.displayManager.preStart = ''
|
||||
# Enable full range of RGB values in HDMI output
|
||||
${pkgs.libdrm.bin}/bin/proptest -M i915 -D /dev/dri/card1 95 connector 97 1
|
||||
'';
|
||||
# Workaround for GDM crashing on autologin:
|
||||
# https://github.com/NixOS/nixpkgs/issues/103746
|
||||
systemd.services."getty@tty1".enable = false;
|
||||
systemd.services."autovt@tty1".enable = false;
|
||||
|
||||
services.xserver.xkb.layout = "us";
|
||||
services.xserver.xkb.options = "eurosign:e";
|
||||
|
||||
security.rtkit.enable = true;
|
||||
services.pulseaudio.enable = false;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
extraConfig = import ./pipewire-extra-config.nix;
|
||||
};
|
||||
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
|
||||
};
|
||||
hardware.graphics.enable = true;
|
||||
hardware.graphics.extraPackages = with pkgs; [
|
||||
intel-media-driver
|
||||
vaapiIntel
|
||||
intel-compute-runtime # OpenCL filter support
|
||||
];
|
||||
|
||||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
services.libinput.enable = true;
|
||||
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
firefox
|
||||
git
|
||||
pavucontrol
|
||||
vlc
|
||||
transmission-remote-gtk
|
||||
helvum
|
||||
chromium
|
||||
kodi
|
||||
libdrm # proptest
|
||||
(goaccess.override {
|
||||
withGeolocation = true;
|
||||
})
|
||||
jq
|
||||
rygel # UPnP media renderer
|
||||
];
|
||||
|
||||
users.users.maestro = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||||
};
|
||||
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
# enableSSHSupport = true;
|
||||
};
|
||||
|
||||
|
||||
networking.hostName = "seedbox"; # Define your hostname.
|
||||
networking.useDHCP = false;
|
||||
networking.interfaces.enp1s0 = {
|
||||
useDHCP = false;
|
||||
ipv4.addresses = [
|
||||
{
|
||||
address = "192.168.1.60";
|
||||
prefixLength = 24;
|
||||
}
|
||||
];
|
||||
ipv6.addresses = [
|
||||
{
|
||||
address = "2a02:578:8591:1b00::ffff";
|
||||
prefixLength = 64;
|
||||
}
|
||||
];
|
||||
};
|
||||
networking.enableIPv6 = true;
|
||||
networking.defaultGateway = "192.168.1.1";
|
||||
networking.defaultGateway6 = {
|
||||
address = "fe80::52d4:f7ff:fe28:9849"; # TP-Link router
|
||||
interface = "enp1s0";
|
||||
};
|
||||
networking.nameservers = [ "1.1.1.1" ];
|
||||
networking.extraHosts = ''
|
||||
192.168.1.60 mstro.duckdns.org
|
||||
192.168.1.60 deemz.org
|
||||
'';
|
||||
# 2a02:578:8591:1b00::ffff mstro.duckdns.org
|
||||
networking.networkmanager.unmanaged = [ "enp1s0" ];
|
||||
|
||||
# IPv6 is enabled, meaning we're not protected by NAT -> enable firewall
|
||||
networking.firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [
|
||||
22
|
||||
#53
|
||||
80
|
||||
443
|
||||
51413 # Transmission
|
||||
];
|
||||
allowedUDPPorts = [
|
||||
#53
|
||||
51413 # Transmission
|
||||
];
|
||||
# Accept all traffic from local network:
|
||||
extraCommands = ''
|
||||
iptables -A nixos-fw -p tcp --source 192.168.1.0/24 -j nixos-fw-accept
|
||||
iptables -A nixos-fw -p udp --source 192.168.1.0/24 -j nixos-fw-accept
|
||||
ip6tables -A nixos-fw -p tcp --source 2A02:578:8591:1B00::/64 -j nixos-fw-accept
|
||||
ip6tables -A nixos-fw -p udp --source 2A02:578:8591:1B00::/64 -j nixos-fw-accept
|
||||
'';
|
||||
};
|
||||
|
||||
# Users specifically for sending dynamic DNS updates
|
||||
users.users.duckdns = {
|
||||
isSystemUser = true;
|
||||
group = "dyndns";
|
||||
};
|
||||
users.users.cloudflare-dns = {
|
||||
isSystemUser = true;
|
||||
group = "dyndns";
|
||||
};
|
||||
users.groups.dyndns = {}; # create this user
|
||||
# Send DNS updates
|
||||
services.cron = {
|
||||
enable = true;
|
||||
systemCronJobs = [
|
||||
# Update DuckDNS - use 'journalctl -e' to see logged output (should log 'OK' every 5 minutes)
|
||||
"*/5 * * * * duckdns curl 'https://www.duckdns.org/update?domains=mstro&token=${duckdns-token}&ip=' | systemd-cat -t 'duckdns'"
|
||||
# Update CloudFlare DNS
|
||||
"*/1 * * * * cloudflare-dns curl --request PUT --url https://api.cloudflare.com/client/v4/zones/${secrets.cloudflare_zone_id}/dns_records/${secrets.cloudflare_dns_record_id} --header 'Content-Type: application/json' --header 'Authorization: Bearer ${secrets.cloudflare_api_token}' --data '{ \"comment\": \"Domain verification record\", \"name\": \"@\", \"proxied\": false, \"settings\": {}, \"tags\": [], \"ttl\": 60, \"content\": \"'$(curl https://ipinfo.io/ip)'\", \"type\": \"A\" }' | jq -r '.success' | systemd-cat -t 'cloudflare-dns'"
|
||||
];
|
||||
};
|
||||
|
||||
services.openssh.enable = true;
|
||||
services.openssh.settings.PasswordAuthentication = false;
|
||||
services.openssh.banner = ''
|
||||
Howdy, partner!
|
||||
'';
|
||||
|
||||
# DNSMasq will override the DNS entry for /etc/hosts entries
|
||||
services.dnsmasq = {
|
||||
enable = true;
|
||||
settings = {
|
||||
server = [
|
||||
"1.1.1.1" # Cloudflare primary
|
||||
"1.0.0.1" # Cloudflare secondary
|
||||
"8.8.8.8" # Google primary
|
||||
"8.8.4.4" # Google secondary
|
||||
"2606:4700:4700::1111" # Cloudflare primary
|
||||
"2606:4700:4700::1001" # Cloudflare secondary
|
||||
"2a02:578:8000:2:212:71:0:33" # Edpnet primary
|
||||
"2a02:578:1001:3:212:71:8:10" # Edpnet secondary
|
||||
];
|
||||
listen-address = "::1,2a02:578:8591:1b00::ffff,127.0.0.1,192.168.1.60";
|
||||
cache-size = 10000;
|
||||
};
|
||||
};
|
||||
|
||||
# NGINX
|
||||
services.nginx = let
|
||||
userlist = secrets.nginx_userlist;
|
||||
commonConfig = {
|
||||
root = "/schijf";
|
||||
locations."/" = {
|
||||
basicAuth = userlist;
|
||||
extraConfig = ''
|
||||
autoindex on;
|
||||
'';
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
locations."/public" = {
|
||||
basicAuth = {};
|
||||
extraConfig = ''
|
||||
autoindex off;
|
||||
'';
|
||||
};
|
||||
locations."/plantuml" = {
|
||||
basicAuth = {};
|
||||
extraConfig = ''
|
||||
autoindex off;
|
||||
'';
|
||||
proxyPass = "http://127.0.0.1:8080/plantuml";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
locations."/transmission/web/" = {
|
||||
basicAuth = userlist;
|
||||
proxyPass = "http://127.0.0.1:9091/transmission/web/";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
locations."/transmission/rpc" = {
|
||||
basicAuth = userlist;
|
||||
proxyPass = "http://127.0.0.1:9091/transmission/rpc";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
locations."/jellyfin/" = {
|
||||
#basicAuth = userlist;
|
||||
proxyPass = "http://127.0.0.1:8096/jellyfin/";
|
||||
proxyWebsockets = true;
|
||||
extraConfig = ''
|
||||
proxy_buffering off;
|
||||
'';
|
||||
};
|
||||
locations."/git/" = {
|
||||
basicAuth = {};
|
||||
proxyPass = "http://127.0.0.1:27365/";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
|
||||
|
||||
extraConfig = ''
|
||||
charset UTF-8;
|
||||
disable_symlinks off;
|
||||
more_set_headers 'Server: nginx on NixOS';
|
||||
'';
|
||||
};
|
||||
in {
|
||||
enable = true;
|
||||
|
||||
recommendedGzipSettings = true;
|
||||
recommendedOptimisation = true;
|
||||
recommendedProxySettings = true;
|
||||
recommendedTlsSettings = true;
|
||||
|
||||
# Access from internet: encrypted, authenticated (except '/public')
|
||||
virtualHosts."mstro.duckdns.org" = commonConfig // {
|
||||
serverName = "mstro.duckdns.org";
|
||||
};
|
||||
virtualHosts."deemz.org" = commonConfig // {
|
||||
serverName = "deemz.org";
|
||||
};
|
||||
};
|
||||
security.acme = {
|
||||
acceptTerms = true;
|
||||
certs = {
|
||||
"mstro.duckdns.org".email = "joeri.exelmans@gmail.com";
|
||||
"deemz.org".email = "joeri.exelmans@gmail.com";
|
||||
};
|
||||
};
|
||||
|
||||
services.plantuml-server = {
|
||||
enable = true;
|
||||
plantumlLimitSize = 40000;
|
||||
};
|
||||
|
||||
services.jellyfin.enable = true;
|
||||
|
||||
services.forgejo = {
|
||||
enable = true;
|
||||
settings.server.ROOT_URL = "https://deemz.org/git/";
|
||||
settings.server.HTTP_PORT = 27365;
|
||||
settings.service.DISABLE_REGISTRATION = true;
|
||||
};
|
||||
|
||||
services.transmission = {
|
||||
enable = true;
|
||||
package = pkgs.transmission_3;
|
||||
settings = {
|
||||
peer-port = 51413;
|
||||
rpc-enabled = true;
|
||||
rpc-authentication-required = false;
|
||||
rpc-bind-address = "0.0.0.0";
|
||||
rpc-whitelist-enabled = false;
|
||||
rpc-host-whitelist-enabled = false;
|
||||
};
|
||||
home = "/schijf/transmission";
|
||||
downloadDirPermissions = "775"; # transmission: read+write+exec, other: read+exec
|
||||
};
|
||||
|
||||
|
||||
# UPnP media playback (local network only)
|
||||
services.gnome.rygel.enable = true;
|
||||
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
# this value at the release version of the first install of this system.
|
||||
# Before changing this value read the documentation for this option
|
||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||
system.stateVersion = "21.11"; # Did you read the comment?
|
||||
}
|
||||
34
deemz.org/hardware-configuration.nix
Normal file
34
deemz.org/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/cb7a28e2-24d0-4156-8164-19f1e2208985";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/2496-3A5D";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" ];
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/23382524-af2d-453e-acb4-1cf6a7083319"; }
|
||||
];
|
||||
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
||||
BIN
deemz.org/nec-v462-edid-patched.bin
Normal file
BIN
deemz.org/nec-v462-edid-patched.bin
Normal file
Binary file not shown.
204
deemz.org/pipewire-extra-config.nix
Normal file
204
deemz.org/pipewire-extra-config.nix
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
{
|
||||
pipewire = {
|
||||
"10-downmix-5.1-to-4.0" = {
|
||||
"context.modules" = [
|
||||
{
|
||||
name = "libpipewire-module-filter-chain";
|
||||
args = {
|
||||
"node.description" = "5.1 surround downmix";
|
||||
"media.name" = "5.1 surround downmix";
|
||||
"filter.graph" = {
|
||||
nodes = builtins.concatLists [
|
||||
# FC and LFE connect to multiple nodes, so we need to create a 'copy' node for them
|
||||
(map (name: { name=name; type="builtin"; label="copy"; })
|
||||
[ "copyFC" "copyLFE" ])
|
||||
|
||||
# Each output (FL, FR, RL, RR) is mixed from:
|
||||
# In 1: their respective inputs (at original level)
|
||||
# In 2: the center channel (only for FL and FR)
|
||||
# In 3: the LFE channel (already amplified to match other channels by the decoder (e.g., 10 dB in Dolby spec) divided by 4)
|
||||
(map (name: { name=name; type="builtin"; label="mixer"; control={"Gain 1"=1; "Gain 2"=0.5; "Gain 3"=0.25;}; })
|
||||
[ "mixFL" "mixFR" "mixRL" "mixRR" ])
|
||||
];
|
||||
links = [
|
||||
# FC goes into FL and FR (at half gain)
|
||||
{ output = "copyFC:Out"; input = "mixFL:In 2"; }
|
||||
{ output = "copyFC:Out"; input = "mixFR:In 2"; }
|
||||
|
||||
# LFE goes into all 4 channels
|
||||
{ output = "copyLFE:Out"; input = "mixFL:In 3"; }
|
||||
{ output = "copyLFE:Out"; input = "mixFR:In 3"; }
|
||||
{ output = "copyLFE:Out"; input = "mixRL:In 3"; }
|
||||
{ output = "copyLFE:Out"; input = "mixRR:In 3"; }
|
||||
];
|
||||
inputs = [ "mixFL:In 1" "mixFR:In 1" "copyFC:In" "copyLFE:In" "mixRL:In 1" "mixRR:In 1" ];
|
||||
outputs = [ "mixFL:Out" "mixFR:Out" "mixRL:Out" "mixRR:Out" ];
|
||||
};
|
||||
"capture.props" = {
|
||||
"node.name" = "effect_input.downmix-5.1-to-4.0";
|
||||
"media.class" = "Audio/Sink";
|
||||
"audio.channels" = 6;
|
||||
"audio.position" = [ "FL" "FR" "FC" "LFE" "RL" "RR" ];
|
||||
};
|
||||
"playback.props" = {
|
||||
"node.name" = "effect_output.downmix-5.1-to-4.0";
|
||||
"node.passive" = true;
|
||||
"audio.channels" = 4;
|
||||
"audio.position" = [ "FL" "FR" "RL" "RR" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
# The following filter is meant for a quadrophonics (4.0) setup with 4 full-range speakers and no dedicated subwoofer.
|
||||
# It extracts bass from all 4 channels, mixes it, and feeds it back equally to all channels (bass becomes mono).
|
||||
# The result is more flat bass response in much of the room.
|
||||
"20-subwoofer-crossover" = let
|
||||
crossoverFreq = 60;
|
||||
in {
|
||||
"context.modules" = [
|
||||
{
|
||||
name = "libpipewire-module-filter-chain";
|
||||
args = {
|
||||
"node.description" = "Subwoofer crossover";
|
||||
"media.name" = "Subwoofer crossover";
|
||||
"filter.graph" = {
|
||||
nodes = builtins.concatLists [
|
||||
# Create copy nodes for all our inputs
|
||||
(map (name: { name=name; type="builtin"; label="copy"; })
|
||||
[ "copyFL" "copyFR" "copyRL" "copyRR" ])
|
||||
|
||||
# Each channel is high-passed
|
||||
(map (name: { name=name; type="builtin"; label="bq_highpass"; })
|
||||
[ "highpassFL" "highpassFR" "highpassRL" "highpassRR" ])
|
||||
|
||||
# Create our 'LFE' channel
|
||||
# All channels are mixed before being low-passed (for subwoofer channel)
|
||||
[
|
||||
{
|
||||
name = "mixAll";
|
||||
type = "builtin";
|
||||
label = "mixer";
|
||||
control = { "Gain 1"=0.25; "Gain 2"=0.25; "Gain 3"=0.25; "Gain 4"=0.25; };
|
||||
}
|
||||
{
|
||||
name = "lowpass";
|
||||
type = "builtin";
|
||||
label = "bq_lowpass";
|
||||
control = { Freq = crossoverFreq; };
|
||||
}
|
||||
# While we're at it, let's add some extra "oomph"
|
||||
{
|
||||
name = "oomph";
|
||||
type = "builtin";
|
||||
label = "bq_peaking";
|
||||
control = { Freq = 28; Q = 1; Gain = 6; };
|
||||
}
|
||||
]
|
||||
|
||||
# Each of the 4 resulting outputs is mixed from (1) the high-passed channel, (2) the low-passed mix of all 4 channels
|
||||
(map (name: { name=name; type="builtin"; label="mixer"; })
|
||||
[ "mixFL" "mixFR" "mixRL" "mixRR" ])
|
||||
];
|
||||
links = [
|
||||
# All 4 channels are mixed to extract subwoofer channel
|
||||
{ output = "copyFL:Out"; input = "mixAll:In 1"; }
|
||||
{ output = "copyFR:Out"; input = "mixAll:In 2"; }
|
||||
{ output = "copyRL:Out"; input = "mixAll:In 3"; }
|
||||
{ output = "copyRR:Out"; input = "mixAll:In 4"; }
|
||||
|
||||
# All 4 channels are high-passed
|
||||
{ output = "copyFL:Out"; input = "highpassFL:In"; }
|
||||
{ output = "copyFR:Out"; input = "highpassFR:In"; }
|
||||
{ output = "copyRL:Out"; input = "highpassRL:In"; }
|
||||
{ output = "copyRR:Out"; input = "highpassRR:In"; }
|
||||
|
||||
# The mixed channel is low-passed
|
||||
{ output = "mixAll:Out"; input = "lowpass:In"; }
|
||||
{ output = "lowpass:Out"; input = "oomph:In"; }
|
||||
|
||||
# The low-passed signal is mixed into every output channel
|
||||
{ output = "oomph:Out"; input = "mixFL:In 1"; }
|
||||
{ output = "oomph:Out"; input = "mixFR:In 1"; }
|
||||
{ output = "oomph:Out"; input = "mixRL:In 1"; }
|
||||
{ output = "oomph:Out"; input = "mixRR:In 1"; }
|
||||
|
||||
# The high-passed signals are mixed into their respective output channels
|
||||
{ output = "highpassFL:Out"; input = "mixFL:In 2"; }
|
||||
{ output = "highpassFR:Out"; input = "mixFR:In 2"; }
|
||||
{ output = "highpassRL:Out"; input = "mixRL:In 2"; }
|
||||
{ output = "highpassRR:Out"; input = "mixRR:In 2"; }
|
||||
];
|
||||
inputs = [ "copyFL:In" "copyFR:In" "copyRL:In" "copyRR:In" ];
|
||||
outputs = [ "mixFL:Out" "mixFR:Out" "mixRL:Out" "mixRR:Out" ];
|
||||
};
|
||||
"capture.props" = {
|
||||
"node.name" = "effect_input.subwoofer-crossover";
|
||||
"media.class" = "Audio/Sink";
|
||||
"audio.channels" = 4;
|
||||
"audio.position" = [ "FL" "FR" "RL" "RR" ];
|
||||
};
|
||||
"playback.props" = {
|
||||
"node.name" = "effect_output.subwoofer-crossover";
|
||||
"node.passive" = true;
|
||||
"audio.channels" = 4;
|
||||
"audio.position" = [ "FL" "FR" "RL" "RR" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
# Upmixes stereo (2.0) to quadrophonics (4.0).
|
||||
# The rear speakers get the signal from the front speakers, rotated by 90 degrees, and slightly delayed.
|
||||
"30-upmix-2.0-to-4.0" = let
|
||||
#delay = 0.000; # (ms) delay of rear speakers
|
||||
delay = 0.009; # (ms) delay of rear speakers
|
||||
in {
|
||||
"context.modules" = [
|
||||
{
|
||||
name = "libpipewire-module-filter-chain";
|
||||
args = {
|
||||
"node.description" = "Upmix 2.0 -> 4.0";
|
||||
"media.name" = "Upmix 2.0 -> 4.0";
|
||||
"filter.graph" = {
|
||||
nodes = builtins.concatLists [
|
||||
(map (name: { name=name; type="builtin"; label="copy"; })
|
||||
[ "copyFL" "copyFR" "outFL" "outFR" ])
|
||||
|
||||
(map (name: { name=name; type="builtin"; label="convolver"; config={filename="/hilbert";}; })
|
||||
[ "rotateL" "rotateR" ])
|
||||
|
||||
(map (name: { name=name; type="builtin"; label="delay"; control={"Delay (s)"=delay;}; config={max-delay=delay;}; })
|
||||
[ "delayL" "delayR" ])
|
||||
];
|
||||
links = [
|
||||
# Front channels
|
||||
{ output = "copyFL:Out"; input = "outFL:In"; }
|
||||
{ output = "copyFR:Out"; input = "outFR:In"; }
|
||||
# Rear channels
|
||||
{ output = "copyFL:Out"; input = "rotateL:In"; }
|
||||
{ output = "copyFR:Out"; input = "rotateR:In"; }
|
||||
{ output = "rotateL:Out"; input = "delayL:In"; }
|
||||
{ output = "rotateR:Out"; input = "delayR:In"; }
|
||||
];
|
||||
inputs = [ "copyFL:In" "copyFR:In" ];
|
||||
outputs = [ "outFL:Out" "outFR:Out" "delayL:Out" "delayR:Out" ];
|
||||
};
|
||||
"capture.props" = {
|
||||
"node.name" = "effect_input.upmix-2.0-to-4.0";
|
||||
"media.class" = "Audio/Sink";
|
||||
"audio.channels" = 2;
|
||||
"audio.position" = [ "FL" "FR" ];
|
||||
};
|
||||
"playback.props" = {
|
||||
"node.name" = "effect_output.upmix-2.0-to-4.0";
|
||||
"node.passive" = true;
|
||||
"audio.channels" = 4;
|
||||
"audio.position" = [ "FL" "FR" "RL" "RR" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue