adding installers again and working on audio latency
This commit is contained in:
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
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
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
BIN
binary-installers/rns_344_linux_x86_64.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
14
flake.lock
generated
14
flake.lock
generated
|
@ -134,11 +134,11 @@
|
|||
"zig": "zig"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1736172756,
|
||||
"narHash": "sha256-4pvJVPSqr8QCOOw+UaNJwBZJvnImRbklYm/AvFIwzNc=",
|
||||
"lastModified": 1736186781,
|
||||
"narHash": "sha256-jiKBu/hVN6bKxShMCFS4RHXUQkRfmiuRYZXNc4iAiIc=",
|
||||
"owner": "ghostty-org",
|
||||
"repo": "ghostty",
|
||||
"rev": "d0b06bd55fe9ed11f2fa012b295260d0ebb8cf00",
|
||||
"rev": "037de64ea2c3f6201948236559524986f41a72f7",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -233,11 +233,11 @@
|
|||
},
|
||||
"locked": {
|
||||
"dir": "nix",
|
||||
"lastModified": 1735922658,
|
||||
"narHash": "sha256-5EHJcwsvTs9kaqZ6N55H7Joi3cWDPd1GuGfSjABri+0=",
|
||||
"lastModified": 1736192527,
|
||||
"narHash": "sha256-s0nfy/exouiq6JdBiOhEvcfK1Nh8d/cVzYB67b36WPI=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "27bd0f9851b2d9fffcd20d030d9eca5c0805d32e",
|
||||
"revCount": 896,
|
||||
"rev": "25de8837fdd89b5c70bb313188f7430fe29e0c42",
|
||||
"revCount": 900,
|
||||
"submodules": true,
|
||||
"type": "git",
|
||||
"url": "https://github.com/kmonad/kmonad?dir=nix"
|
||||
|
|
|
@ -226,6 +226,7 @@
|
|||
|
||||
xdg-desktop-portal-gnome
|
||||
xdg-desktop-portal-gtk
|
||||
xdg-desktop-portal
|
||||
soundconverter
|
||||
gtop
|
||||
wmctrl
|
||||
|
@ -317,8 +318,11 @@
|
|||
mpv
|
||||
plugdata
|
||||
pavucontrol
|
||||
pwvucontrol
|
||||
sonusmix
|
||||
qpwgraph
|
||||
helvum
|
||||
coppwr
|
||||
alsa-utils
|
||||
alsa-tools
|
||||
clapper
|
||||
|
@ -449,7 +453,6 @@
|
|||
};
|
||||
starship = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
mu.enable = true;
|
||||
mbsync.enable = true;
|
||||
|
@ -484,7 +487,6 @@
|
|||
};
|
||||
thefuck = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
ghostty = {
|
||||
enable = true;
|
||||
|
@ -531,18 +533,15 @@
|
|||
};
|
||||
eza = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
fd = {
|
||||
enable = true;
|
||||
};
|
||||
fzf = {
|
||||
enable = true;
|
||||
# enableFishIntegration = true;
|
||||
};
|
||||
broot = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
git = {
|
||||
enable = true;
|
||||
|
@ -613,7 +612,6 @@
|
|||
};
|
||||
gpg-agent = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
emacs = {
|
||||
enable = true;
|
||||
|
|
|
@ -160,6 +160,7 @@
|
|||
'';
|
||||
|
||||
security.polkit.enable = true;
|
||||
security.rtkit.enable = true;
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue