-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
executable file
·53 lines (47 loc) · 1.61 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
nixpkgs-ruby.url = "github:bobvanderlinden/nixpkgs-ruby";
devenv.url = "github:cachix/devenv";
};
outputs = { self, nixpkgs, devenv, ... } @ inputs:
let
systems = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
forAllSystems = f: builtins.listToAttrs (map (name: { inherit name; value = f name; }) systems);
in
{
devShells = forAllSystems
(system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
default = devenv.lib.mkShell {
inherit inputs pkgs;
modules = [
{
languages.ruby.enable = true;
languages.ruby.versionFile = ./.ruby-version;
difftastic.enable = true;
# https://devenv.sh/reference/options/
packages = [
pkgs.ffmpeg
pkgs.nodejs
pkgs.nodePackages.vscode-html-languageserver-bin
pkgs.nodePackages.vscode-css-languageserver-bin
pkgs.nodePackages.typescript-language-server
pkgs.nil # nix language server
pkgs.chromedriver pkgs.ungoogled-chromium
];
enterShell = ''
export WD_CHROME_PATH=${pkgs.ungoogled-chromium}/bin/chromium
bundle
'';
}
];
};
});
};
}