Made desktop env declarations common + sway scrsht

This commit is contained in:
2025-11-15 15:06:37 +02:00
parent 627000c03d
commit 78120dca0c
7 changed files with 39 additions and 34 deletions

View File

@@ -0,0 +1,17 @@
{
config,
pkgs,
...
}: {
# Enable sound with pipewire.
services.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
};
}