blob: d201c742b8723c3b891ab14db907be11b71da8d1 (
plain)
1
2
3
4
5
|
#nix #keyword
---
The import keyword brings a Nix expression from another source into scope such that we can reference it. For example, we can `import <nixpkgs>` and it would bring the entire attribute set that is Nixpkgs into scope and allows us to reference any of its attributes.
|