nix-config/configs/nixos/sound.nix
Gabe Venberg e8a5bb3bc9 many things:
* flake.lock update, with code changes needed.
* miniserve.rs static directory listing.
* change from typst-ls to tinymist for typst lsp
* deletion of hugo template.
* change from self-built duckdns module to nixpkgs one.
2025-02-24 11:39:38 +01:00

23 lines
399 B
Nix

{
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;
};
home-manager.users.${config.host.user} = {config, ...}: {
home.packages = with pkgs; [
pwvucontrol
helvum
];
};
}