diff options
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/workstation.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/profiles/workstation.nix b/profiles/workstation.nix index e860389..ae9423b 100644 --- a/profiles/workstation.nix +++ b/profiles/workstation.nix @@ -21,4 +21,28 @@ # Install tools related to the scanner (scanimage etc) hardware.sane.enable = true; + + # RealtimeKit is recommended + security.rtkit.enable = true; + + # Sound configuration + sound.enable = false; + + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + jack.enable = true; + }; + + hardware.pulseaudio.enable = false; + + # Misc packages useful on a workstation + environment.systemPackages = with pkgs; [ + # sound related + pulseaudio + pavucontrol + easyeffects + ]; } |