blob: 2226294b126529191b3d504bdaf4fc1ff8bcfda4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
pkgs,
system,
inputs,
}: {
# Default shell only containing home-manager for
# initial installs
default = pkgs.mkShell {
packages = [
inputs.home-manager.packages.${system}.home-manager
];
};
# VST development with windows VST3 support though yabridge/wine
vst = pkgs.mkShell (import ./vst.nix {
pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
lib = inputs.nixpkgs.lib;
});
}
|