1{ pkgs, ... }:
2{
3 services = {
4 pipewire = {
5 enable = true;
6 alsa.enable = true;
7 alsa.support32Bit = true;
8 pulse.enable = true;
9 };
10 };
11 environment.systemPackages = with pkgs; [
12 curl
13 neovim
14 git
15 storcli
16 smartmontools
17 ffmpeg
18 ];
19}