properly remove pulse (replaced by pipewire)
This commit is contained in:
parent
7b44675c02
commit
2a8206d76c
3 changed files with 10 additions and 19 deletions
|
@ -17,7 +17,6 @@
|
||||||
|
|
||||||
#exec compton -f
|
#exec compton -f
|
||||||
exec ${pkgs.feh}/bin/feh --bg-scale $(xdg-user-dir PICTURES)/wallpaper.jpg
|
exec ${pkgs.feh}/bin/feh --bg-scale $(xdg-user-dir PICTURES)/wallpaper.jpg
|
||||||
#exec pulseaudio -D
|
|
||||||
exec fcitx5
|
exec fcitx5
|
||||||
#exec conky -c $HOME/.my_little_conky/.conkyrc
|
#exec conky -c $HOME/.my_little_conky/.conkyrc
|
||||||
#exec xsnow -nosanta -norudolf -notrees
|
#exec xsnow -nosanta -norudolf -notrees
|
||||||
|
|
|
@ -129,16 +129,6 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
pulseaudio = {
|
|
||||||
enable = true;
|
|
||||||
support32Bit = true;
|
|
||||||
package = pkgs.pulseaudioFull;
|
|
||||||
zeroconf.discovery.enable = false;
|
|
||||||
extraClientConf = ''
|
|
||||||
autospawn = no
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
bluetooth = {
|
bluetooth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
powerOnBoot = true;
|
powerOnBoot = true;
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
|
|
||||||
lib.mkIf (lib.elem "pipewire" config.machine.services) {
|
lib.mkIf (lib.elem "pipewire" config.machine.services) {
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
hardware.pulseaudio.enable = lib.mkForce false;
|
services = {
|
||||||
services.pipewire = {
|
pulseaudio.enable = false;
|
||||||
|
pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wireplumber.enable = true;
|
wireplumber.enable = true;
|
||||||
audio.enable = true;
|
audio.enable = true;
|
||||||
|
@ -11,4 +12,5 @@ lib.mkIf (lib.elem "pipewire" config.machine.services) {
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
jack.enable = true;
|
jack.enable = true;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue