mirror of
https://git.dodsorf.as/Dandellion/dotfiles.git
synced 2024-12-31 23:07:29 +01:00
18 lines
235 B
Nix
18 lines
235 B
Nix
{pkgs, config, lib, ...}:
|
|
|
|
{
|
|
|
|
home.packages = [
|
|
pkgs.jack2
|
|
pkgs.qjackctl
|
|
];
|
|
|
|
home.file.pulse = {
|
|
target = ".config/pulse/client.conf";
|
|
text = ''
|
|
daemon-binary=/var/run/current-system/sw/bin/pulseaudio
|
|
'';
|
|
};
|
|
|
|
}
|