diff options
author | lassulus <lassulus@lassul.us> | 2022-11-01 11:03:54 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-11-01 11:03:54 +0100 |
commit | e5bb7bf7d1f02e0c141ca213c8967bdee8f7736f (patch) | |
tree | 84ce42d097fd87ba33a0eb21149c7de6c5c9524c /makefu/2configs/gui/base.nix | |
parent | d999eca9191dc604bf744b42a9ccec3faab23ce5 (diff) | |
parent | e6513be864c7d27c36eb9d6ba504de65e48fde13 (diff) |
Merge remote-tracking branch 'gum/master'
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 |