blob: 139d3f9d668fde5b937a5fcf774c8b9213c19e4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
```nix
{
description = "Example flake with a devShell";
inputs.nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
outputs = { self, nixpkgs}:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = with pkgs; [
hello
];
shellHook = ''
echo "Welcome to the devShell!"
'';
};
};
}
```
To enter: `nix develop`. Or use nix direnv and put a `.envrc` in place with `use flake`.
|