-
Notifications
You must be signed in to change notification settings - Fork 7
/
flake.nix
35 lines (31 loc) · 888 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
devenv.url = "github:cachix/devenv";
};
outputs =
inputs@{ flake-parts, nixpkgs, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ inputs.devenv.flakeModule ];
systems = nixpkgs.lib.systems.flakeExposed;
perSystem =
{ lib
, pkgs
, ...
}:
{
# Per-system attributes can be defined here. The self' and inputs'
# module parameters provide easy access to attributes of the same
# system.
devenv.shells.default = {
# https://devenv.sh/reference/options/
dotenv.disableHint = true;
languages.rust.enable = true;
# packages = with pkgs; [ ];
env = {
RUST_LOG = "info";
};
};
};
};
}