Compare commits
3 commits
ff5a541071
...
ef7c1de49a
Author | SHA1 | Date | |
---|---|---|---|
Serĉanto de Scio | ef7c1de49a | ||
Serĉanto de Scio | 61c4c60e7a | ||
Serĉanto de Scio | 2d52e3da66 |
6
overlays/ncmpcpp.nix
Normal file
6
overlays/ncmpcpp.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Enable the visualiser in ncmpcpp
|
||||
self: super: {
|
||||
ncmpcpp = super.ncmpcpp.override {
|
||||
visualizerSupport = true;
|
||||
};
|
||||
}
|
12
profiles/ipv6.nix
Normal file
12
profiles/ipv6.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
# NixOps configuration for the hosts running a TURN server (coturn)
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
networking = {
|
||||
enableIPv6 = true;
|
||||
tempAddresses = "disabled";
|
||||
};
|
||||
}
|
31
profiles/pipewire.nix
Normal file
31
profiles/pipewire.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
# Common configuration for pipewire on MIO desktops
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
security.rtkit.enable = true;
|
||||
|
||||
services = {
|
||||
pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
environment.etc = {
|
||||
"wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = ''
|
||||
bluez_monitor.properties = {
|
||||
["bluez5.enable-sbc-xq"] = true,
|
||||
["bluez5.enable-msbc"] = true,
|
||||
["bluez5.enable-hw-volume"] = true,
|
||||
["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]"
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
||||
hardware.pulseaudio.enable = false;
|
||||
sound.enable = true; # Enable sound.
|
||||
}
|
Loading…
Reference in a new issue