summary refs log tree commit diff stats
path: root/shell.nix
blob: 8b4f463c8ab202dc313f8ee5b8079ed171130583 (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
let
  sources = import ./nix/sources.nix;

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

  nixPath = builtins.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}";
  '';

}