summaryrefslogtreecommitdiff
path: root/modules/graphical.nix
diff options
context:
space:
mode:
authorGrigory Shipunov2022-06-08 18:47:49 +0200
committerGrigory Shipunov2022-06-08 18:47:49 +0200
commit3924624e7516464d2f24cd19b62c02072436850c (patch)
treee19e56c5355a0a2354b341b844819b1992783ffb /modules/graphical.nix
parent3a40a3af28b03615f9478825bb3f3e2b8028ceab (diff)
YOLO
Diffstat (limited to 'modules/graphical.nix')
-rw-r--r--modules/graphical.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/modules/graphical.nix b/modules/graphical.nix
index 91369a7..729cb1d 100644
--- a/modules/graphical.nix
+++ b/modules/graphical.nix
@@ -11,16 +11,15 @@
firefox-wayland
dino
alacritty
- kitty
xclip
flameshot
wl-clipboard
brightnessctl
- pulseaudio-ctl
feh
mpv
zathura
pulsemixer
+ pulseaudioFull
screen-message
cmus
gtk-engine-murrine
@@ -43,7 +42,6 @@
monoid
spleen
terminus_font
- iosevka
creep
corefonts
dina-font
@@ -76,11 +74,18 @@
};
# Enable sound.
+ sound.enable = true;
security.rtkit.enable = true;
+ hardware.pulseaudio = {
+ zeroconf.discovery.enable = true;
+ extraClientConf = ''
+ autospawn=yes
+ '';
+ };
+
services.pipewire = {
enable = true;
alsa.enable = true;
- alsa.support32Bit = true;
pulse.enable = true;
};
@@ -128,4 +133,5 @@
programs.bash.vteIntegration = true;
services.upower.enable = true;
+ qt5.platformTheme = "gnome";
}