diff options
author | makefu <github@syntax-fehler.de> | 2022-09-25 14:46:39 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2022-09-25 14:47:08 +0200 |
commit | 65e1ab6bff14cdf9d7ca2b46c91462da9148db72 (patch) | |
tree | e6d6e7a0d546bd2170e5adbef44c61772ec3913d /makefu/2configs/gui/base.nix | |
parent | 5b9d7e47c3f1877bcffdf2aafac712451db43d61 (diff) |
ma gui: pulseaudio -> pipewire
Diffstat (limited to 'makefu/2configs/gui/base.nix')
-rw-r--r-- | makefu/2configs/gui/base.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/makefu/2configs/gui/base.nix b/makefu/2configs/gui/base.nix index 4ae816d5f..b2192c7f9 100644 --- a/makefu/2configs/gui/base.nix +++ b/makefu/2configs/gui/base.nix @@ -17,8 +17,10 @@ in { imports = [ ./urxvtd.nix + ./pipewire.nix ]; + services.xserver = { enable = true; layout = "us"; @@ -49,7 +51,7 @@ in }; users.users.${mainUser} = { - extraGroups = [ "audio" ]; + extraGroups = [ "pipewire" "audio" ]; packages = with pkgs;[ pavucontrol xlockmore @@ -57,10 +59,6 @@ in ]; }; - hardware.pulseaudio = { - enable = true; - # systemWide = true; - }; services.xserver.displayManager.sessionCommands = let xdefaultsfile = pkgs.writeText "Xdefaults" '' cat |derp <<EOF @@ -79,6 +77,7 @@ in URxvt.urgentOnBell: true URxvt.visualBell: false URxvt.font : xft:Terminus:size=12 + URxvt.perl-ext-common: default,-confirm-paste ! blue |