mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2026-06-22 05:31:16 +02:00
21 lines
332 B
Nix
21 lines
332 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
noisetorch.enable = true;
|
|
};
|
|
services = {
|
|
pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
playerctl
|
|
pulsemixer
|
|
wiremix
|
|
crosspipe
|
|
lmms
|
|
];
|
|
}
|