mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
roles/graphical: reenable pipewire
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
This commit is contained in:
parent
51659cddc4
commit
63291652d0
|
@ -106,7 +106,14 @@ in {
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
(lib.mkIf (cfg.basic.enable || cfg.enable) {
|
(lib.mkIf (cfg.basic.enable || cfg.enable) {
|
||||||
|
# I should move sound part somewhere else
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
|
services.pipewire = {
|
||||||
|
enable = true;
|
||||||
|
alsa.enable = true;
|
||||||
|
pulse.enable = true;
|
||||||
|
alsa.support32Bit = true;
|
||||||
|
};
|
||||||
qt = {
|
qt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
platformTheme = "gtk2";
|
platformTheme = "gtk2";
|
||||||
|
|
Loading…
Reference in a new issue