diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2021-06-14 17:55:29 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2021-06-14 17:55:29 +0200 |
commit | 059081865afab59142364fc6c78af29304702a98 (patch) | |
tree | e7f182b1baac76e01868d5e0e2d5836923750809 /config/config.nix |
Diffstat (limited to 'config/config.nix')
-rw-r--r-- | config/config.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/config.nix b/config/config.nix new file mode 100644 index 0000000..498a806 --- /dev/null +++ b/config/config.nix @@ -0,0 +1,10 @@ +{ +packageOverrides = pkgs: with pkgs; { + myPackages = pkgs.buildEnv { + name = "my-packages"; + paths = [ + bc + ]; + }; +}; +} |