adding installers again and working on audio latency

This commit is contained in:
Matt Nish-Lapidus 2025-01-06 19:03:36 -05:00
parent 9e293dfd90
commit 740835b14c
6 changed files with 47 additions and 13 deletions

BIN
binary-installers/excite_cymbal_pro-v1.0.1.zip (Stored with Git LFS) Normal file

Binary file not shown.

BIN
binary-installers/excite_snare_drum_PRO_1.1.10.zip (Stored with Git LFS) Normal file

Binary file not shown.

BIN
binary-installers/rns_344_linux_x86_64.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

14
flake.lock generated
View file

@ -134,11 +134,11 @@
"zig": "zig" "zig": "zig"
}, },
"locked": { "locked": {
"lastModified": 1736172756, "lastModified": 1736186781,
"narHash": "sha256-4pvJVPSqr8QCOOw+UaNJwBZJvnImRbklYm/AvFIwzNc=", "narHash": "sha256-jiKBu/hVN6bKxShMCFS4RHXUQkRfmiuRYZXNc4iAiIc=",
"owner": "ghostty-org", "owner": "ghostty-org",
"repo": "ghostty", "repo": "ghostty",
"rev": "d0b06bd55fe9ed11f2fa012b295260d0ebb8cf00", "rev": "037de64ea2c3f6201948236559524986f41a72f7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -233,11 +233,11 @@
}, },
"locked": { "locked": {
"dir": "nix", "dir": "nix",
"lastModified": 1735922658, "lastModified": 1736192527,
"narHash": "sha256-5EHJcwsvTs9kaqZ6N55H7Joi3cWDPd1GuGfSjABri+0=", "narHash": "sha256-s0nfy/exouiq6JdBiOhEvcfK1Nh8d/cVzYB67b36WPI=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "27bd0f9851b2d9fffcd20d030d9eca5c0805d32e", "rev": "25de8837fdd89b5c70bb313188f7430fe29e0c42",
"revCount": 896, "revCount": 900,
"submodules": true, "submodules": true,
"type": "git", "type": "git",
"url": "https://github.com/kmonad/kmonad?dir=nix" "url": "https://github.com/kmonad/kmonad?dir=nix"

View file

@ -226,6 +226,7 @@
xdg-desktop-portal-gnome xdg-desktop-portal-gnome
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
xdg-desktop-portal
soundconverter soundconverter
gtop gtop
wmctrl wmctrl
@ -317,8 +318,11 @@
mpv mpv
plugdata plugdata
pavucontrol pavucontrol
pwvucontrol
sonusmix
qpwgraph qpwgraph
helvum helvum
coppwr
alsa-utils alsa-utils
alsa-tools alsa-tools
clapper clapper
@ -449,7 +453,6 @@
}; };
starship = { starship = {
enable = true; enable = true;
enableFishIntegration = true;
}; };
mu.enable = true; mu.enable = true;
mbsync.enable = true; mbsync.enable = true;
@ -484,7 +487,6 @@
}; };
thefuck = { thefuck = {
enable = true; enable = true;
enableFishIntegration = true;
}; };
ghostty = { ghostty = {
enable = true; enable = true;
@ -531,18 +533,15 @@
}; };
eza = { eza = {
enable = true; enable = true;
enableFishIntegration = true;
}; };
fd = { fd = {
enable = true; enable = true;
}; };
fzf = { fzf = {
enable = true; enable = true;
# enableFishIntegration = true;
}; };
broot = { broot = {
enable = true; enable = true;
enableFishIntegration = true;
}; };
git = { git = {
enable = true; enable = true;
@ -613,7 +612,6 @@
}; };
gpg-agent = { gpg-agent = {
enable = true; enable = true;
enableFishIntegration = true;
}; };
emacs = { emacs = {
enable = true; enable = true;

View file

@ -160,6 +160,7 @@
''; '';
security.polkit.enable = true; security.polkit.enable = true;
security.rtkit.enable = true;
services.xserver.videoDrivers = [ "nvidia" ]; services.xserver.videoDrivers = [ "nvidia" ];
@ -262,6 +263,32 @@
} }
]; ];
}; };
pipewire."92-low-latency" = {
context.properties = {
default.clock.rate = 48000;
default.clock.quantum = 32;
default.clock.min-quantum = 32;
default.clock.max-quantum = 32;
};
};
pipewire-pulse."92-low-latency" = {
context.modules = [
{
name = "libpipewire-module-protocol-pulse";
args = {
pulse.min.req = "32/48000";
pulse.default.req = "32/48000";
pulse.max.req = "32/48000";
pulse.min.quantum = "32/48000";
pulse.max.quantum = "32/48000";
};
}
];
stream.properties = {
node.latency = "32/48000";
resample.quality = 1;
};
};
}; };
}; };