diff options
author | lassulus <lassulus@lassul.us> | 2019-01-16 11:17:20 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-01-16 11:17:20 +0100 |
commit | 879b6d319a18dce6e5f686c997643c78229469a8 (patch) | |
tree | c21b0eef944b80adecb7d95aa79ba4a475ef6dd1 /tv/3modules/nixpkgs-overlays.nix | |
parent | a1d9c22bbd8eff9198f378e9007ddf4cb9ee2e5c (diff) | |
parent | 2d2ab95f0707209c4c248d43cb57877a50a37991 (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'tv/3modules/nixpkgs-overlays.nix')
-rw-r--r-- | tv/3modules/nixpkgs-overlays.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tv/3modules/nixpkgs-overlays.nix b/tv/3modules/nixpkgs-overlays.nix deleted file mode 100644 index 4eb7a86bd..000000000 --- a/tv/3modules/nixpkgs-overlays.nix +++ /dev/null @@ -1,23 +0,0 @@ -with import <stockholm/lib>; -{ config, pkgs, ... }: { - - options.tv.nixpkgs-overlays = mkOption { - apply = src: - pkgs.runCommand "nixpkgs-overlays" {} '' - mkdir $out - ${concatStringsSep "\n" (mapAttrsToList (name: path: - "ln -s ${shell.escape path} $out/${shell.escape name}" - ) src)} - '' // { - inherit src; - }; - type = types.attrsOf types.absolute-pathname; - }; - - config = { - tv.nixpkgs-overlays = { - krebs = mkDefault "/var/src/stockholm/krebs/5pkgs"; - tv = mkDefault "/var/src/stockholm/tv/5pkgs"; - }; - }; -} |