diff options
author | tv <tv@krebsco.de> | 2017-07-02 00:09:16 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-07-02 00:11:21 +0200 |
commit | 4f1821f3971708a8f7d4db5f15b8c9651138518d (patch) | |
tree | 945174c2a41175748a8111e9c211616d05ea58c3 /tv/default.nix | |
parent | 9ee286644d050e68292776e02357549801fd20b6 (diff) |
tv: turn pkgs into an overlay
Diffstat (limited to 'tv/default.nix')
-rw-r--r-- | tv/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tv/default.nix b/tv/default.nix index b1c7c1be8..d077cc09f 100644 --- a/tv/default.nix +++ b/tv/default.nix @@ -1,9 +1,9 @@ -_: +{ pkgs, ... }: { imports = [ ../krebs ./2configs ./3modules - ./5pkgs ]; + nixpkgs.config.packageOverrides = import ./5pkgs pkgs; } |