all repos — nixfiles @ 4abe538715e30c666643115916b2431a0999a4c8

System and user configuration, managed by nix and home-manager

base: Install nix-index to help find packages
Alan Pearce alan@alanpearce.eu
Sun, 07 Jan 2018 18:57:40 +0100
commit

4abe538715e30c666643115916b2431a0999a4c8

parent

2cd6b18bb541f1f5a16139fda1e295cb9d7c2136

1 files changed, 4 insertions(+), 0 deletions(-)

jump to
M modules/base.nixmodules/base.nix
@@ -2,6 +2,10 @@ { config, pkgs, ... }: 
 { boot.loader.timeout = 1;
 
+  environment.systemPackages = with pkgs; [
+    nix-index
+  ];
+
   networking.extraHosts = ''
     127.0.0.1 ${config.networking.hostName}
     ::1 ${config.networking.hostName}