summaryrefslogtreecommitdiff
path: root/modules/features/audio-production.nix
blob: 47a34e95aee32fa8c3c5f6891852e518d19e9023 (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
29
30
31
32
33
34
35
36
{ 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; [
      ardour
      guitarix
      guitarix-vst
      neural-amp-modeler-lv2
      lsp-plugins
      dragonfly-reverb
      drumgizmo
      sfizz
      x42-plugins
      geonkick
      surge-xt
      carla
      helm
      cardinal
    ];
  };

}