-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
118 lines (104 loc) · 3.2 KB
/
flake.nix
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
inputs = {
nixpkgs.url = "github:cachix/devenv-nixpkgs/rolling";
systems.url = "github:nix-systems/default";
devenv = {
url = "github:cachix/devenv";
inputs.nixpkgs.follows = "nixpkgs";
};
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
nixConfig = {
extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
extra-substituters = "https://devenv.cachix.org";
};
outputs = {
self,
nixpkgs,
devenv,
systems,
...
} @ inputs: let
forEachSystem = nixpkgs.lib.genAttrs (import systems);
in {
packages = forEachSystem (system: {
devenv-up = self.devShells.${system}.default.config.procfileScript;
});
devShells =
forEachSystem
(system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
default = devenv.lib.mkShell {
inherit inputs pkgs;
modules = [
{
# https://devenv.sh/basics/
# env.GREET = "devenv";
# https://devenv.sh/packages/
packages = with pkgs; [
git
clang
mold
codespell
act
sqlx-cli
pgcli
cargo-edit
];
# https://devenv.sh/scripts/
# scripts.hello.exec = "";
enterShell = ''
./scripts/get-lavalink
'';
# https://devenv.sh/tests/
enterTest = ''
'';
# https://devenv.sh/services/
services.postgres = {
enable = true;
package = pkgs.postgresql_15;
initialDatabases = [{name = "mydb";}];
extensions = extensions: [
extensions.postgis
extensions.timescaledb
];
settings.shared_preload_libraries = "timescaledb";
initialScript = "CREATE EXTENSION IF NOT EXISTS timescaledb;";
listen_addresses = "localhost";
};
# https://devenv.sh/languages/
languages.nix.enable = true;
languages.java = {
enable = true;
jdk.package = pkgs.jdk17;
};
languages.rust = {
enable = true;
channel = "stable";
mold.enable = true;
};
# Enable Codespaces Integration
# https://devenv.sh/integrations/codespaces-devcontainer/
devcontainer.enable = true;
# https://devenv.sh/pre-commit-hooks/
# pre-commit.hooks.shellcheck.enable = true;
# https://devenv.sh/processes/
processes.lavalink.exec = "scripts/lavalink";
processes.database-setup.exec = ''
while ! "./scripts/database"
do
:
done
'';
# See full reference at https://devenv.sh/reference/options/
# dotenv.enable = true;
}
];
};
});
};
}