Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev #96

Merged
merged 3 commits into from
Mar 17, 2025
Merged

dev #96

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 2 additions & 23 deletions generic/pipewire.nix
Original file line number Diff line number Diff line change
@@ -1,35 +1,14 @@
{ ... }:
{
# Enable sound with pipewire.
# enable sound with pipewire.
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
# if you want to use jack applications, uncomment this
#jack.enable = true;
extraConfig.pipewire."10-echo-cancel"."context.modules" = [
{
name = "libpipewire-module-echo-cancel";
args = {
# library.name = aec/libspa-aec-webrtc
# node.latency = 1024/48000
source.props = {
node.name = "Echo Cancellation Source";
};
sink.props = {
node.name = "Echo Cancellation Sink";
};
capture.props = {
node.name = "Echo Cancellation Capture";
};
playback.props = {
node.name = "Echo Cancellation Playback";
};
};
}
];
};
}
6 changes: 0 additions & 6 deletions r-desktop/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@
fsType = "vfat";
};

swapDevices = [
{
label = "swap-hdd";
}
];

# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
Expand Down
2 changes: 1 addition & 1 deletion server/esphome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
services.esphome = {
enable = true;
address = "0.0.0.0";

openFirewall = true;
};
environment.persistence."/permament".directories = [ "/var/lib/private/esphome" ];
}