1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00
nix-pills/pills/16/config-foo-bar.txt

8 lines
178 B
Plaintext
Raw Normal View History

2018-12-05 18:56:44 -05:00
$ nix repl
2017-08-17 09:11:10 -04:00
nix-repl> pkgs = import <nixpkgs> {}
nix-repl> pkgs.config
{ }
nix-repl> pkgs = import <nixpkgs> { config = { foo = "bar"; }; }
nix-repl> pkgs.config
{ foo = "bar"; }