summary refs log tree commit diff stats
path: root/shell.nix
blob: d127031285b5773ff9ff850ae6f60d10d3b3d23f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
let
  sources = import ./npins;

  nixpkgs = sources.nixpkgs;
  pkgs = import nixpkgs { };
  inherit (pkgs) lib;
  # lib = import ./lib { inherit pkgs; };
  inherit (import ./lib { inherit pkgs; }) mkNixPath fromSources;

  nixPath = builtins.concatStringsSep ":" (mkNixPath
    ({
      personal = ./packages;
      nixpkgs-overlays = ./overlays;
      private = ./private;
    } // (fromSources sources))
  );
in
pkgs.mkShell
{

  name = "nixfiles-shell";

  buildInputs = with pkgs; [
    npins
    (pkgs.callPackage "${sources.agenix}/pkgs/agenix.nix" { })
    (import sources.home-manager { inherit pkgs; }).home-manager
  ];

  shellHook = ''
    export NIX_PATH="${nixPath}";
  '';

}