diff --git a/configs/default.nix b/configs/default.nix index ed9a2ef..3223cc9 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -34,6 +34,7 @@ in { scripts = import { pkgs = super; lib = super.lib; }; }) (import ) + (import ) (import ) (import ) ]; diff --git a/configs/packages/default.nix b/configs/packages/default.nix index 3dc3fc0..ce21c80 100644 --- a/configs/packages/default.nix +++ b/configs/packages/default.nix @@ -13,7 +13,6 @@ let in { imports = [ - ./krebs.nix ./writing.nix ./python.nix ./haskell @@ -187,6 +186,14 @@ in { nix-index scripts.nix-index-update + + #krebs + dic + cyberlocker-tools + untilport + kpaste + irc-announce + git-preview ]; } diff --git a/configs/packages/krebs.nix b/configs/packages/krebs.nix deleted file mode 100644 index d9cf4fc..0000000 --- a/configs/packages/krebs.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ lib, pkgs, ... }: -let - krebs-packages = pkgs: { - dic = pkgs.callPackage { }; - yt-next = pkgs.callPackage { }; - acronym = pkgs.callPackage { }; - urban = pkgs.callPackage { }; - mpv-poll = pkgs.callPackage { }; - cyberlocker-tools = pkgs.callPackage { }; - untilport = pkgs.callPackage { }; - kpaste = pkgs.callPackage { }; - irc-announce = - pkgs.callPackage { }; - git-preview = - pkgs.callPackage { }; - }; -in { - nixpkgs.config.packageOverrides = krebs-packages; - - environment.systemPackages = - map (name: pkgs.${name}) (lib.attrNames (krebs-packages pkgs)); -}