summaryrefslogtreecommitdiffstats
path: root/tv/default.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2018-11-27 11:55:12 +0100
committertv <tv@krebsco.de>2018-11-27 11:55:12 +0100
commit627a3800ce3b1fc417cba085d47560c0ad4c93a2 (patch)
tree5cd1fc5c01182d413c72b52ec5205574ca7bcaf5 /tv/default.nix
parentdae35c44c7cf67d10152a4fb32d212310f86199a (diff)
tv: integrate 5pkgs as overlay
Diffstat (limited to 'tv/default.nix')
-rw-r--r--tv/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/tv/default.nix b/tv/default.nix
index d077cc09..10b09f2a 100644
--- a/tv/default.nix
+++ b/tv/default.nix
@@ -1,9 +1,15 @@
-{ pkgs, ... }:
{
+
imports = [
../krebs
./2configs
./3modules
];
- nixpkgs.config.packageOverrides = import ./5pkgs pkgs;
+
+ nixpkgs = {
+ overlays = [
+ (import ./5pkgs)
+ ];
+ };
+
}