summary refs log tree commit diff stats
path: root/shell.nix
blob: 81938c3fa8733e3de29aff90ea07a5b40484736e (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
with builtins;

let
  sources = import ./nix/sources.nix;

  nixpkgs = sources.nixpkgs;
  pkgs = import nixpkgs { };
  lib = import ./lib { inherit pkgs; };

  nixPath = concatStringsSep ":" (lib.mkNixPath sources);
in
pkgs.mkShell
{

  name = "nixfiles-shell";

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

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

}