-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathflake.nix
36 lines (34 loc) · 885 Bytes
/
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
{
description = "For lua environment";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }:
let
systems = [
# "aarch64-linux"
# "i686-linux"
# "aarch64-darwin"
# "x86_64-darwin"
"x86_64-linux"
];
# This is a function that generates an attribute by calling a function you
# pass to it, with each system as an argument
forAllSystems = nixpkgs.lib.genAttrs systems;
in
{
# This is for using nix direnv and flake develop environment
devShells = forAllSystems (system: {
default =
let
pkgs = import nixpkgs { inherit system; };
in
pkgs.mkShell {
packages = with pkgs; [
lua-language-server
stylua
];
};
});
};
}