Gnome : Force disable pulseaudio.
This commit is contained in:
parent
c10024ed33
commit
c553db111e
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }: let
|
||||
{ pkgs, lib, ... }: let
|
||||
dconfConfig = "~/.config/linux/Gnome.dconf";
|
||||
in {
|
||||
# GUI.
|
||||
|
@ -43,7 +43,7 @@ in {
|
|||
|
||||
# Sound.
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
hardware.pulseaudio.enable = lib.mkForce false;
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
|
@ -54,7 +54,6 @@ in {
|
|||
|
||||
# Auto-load config on start.
|
||||
environment.systemPackages = with pkgs; [ dconf ];
|
||||
|
||||
systemd.user.services.dconfload = {
|
||||
description = "Load Gnome dconf settings on startup.";
|
||||
wantedBy = [ "graphical-session-pre.target" ];
|
||||
|
|
Reference in a new issue