summaryrefslogtreecommitdiff
path: root/modules/features/audio-production.nix
blob: 232f664641a53aac4b7a4787bd8b8da19795f15c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ self, inputs, ... }: {

  flake.nixosModules.audioProduction = { pkgs, lib, ... }: {
    musnix.enable = true;
    services.systembus-notify.enable = true;

    security.pam.loginLimits = [
      {
        domain = "dk";
        item = "nofile";
        type = "hard";
        value = "524288";
      }
    ];

    users.users.dk.extraGroups = [ "audio" ];
      
    environment.systemPackages = with pkgs; [
      neural-amp-modeler-lv2
      x42-plugins
      helm
      cardinal
      qjackctl
      reaper
    ];
  };

}