summary refs log tree commit diff stats
path: root/shell.nix
blob: 7d5d4227b516d4884890c9a448b616588ff13173 (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; [
    npins
    deploy-rs
    (pkgs.callPackage "${sources.agenix}/pkgs/agenix.nix" { })
    (import sources.home-manager { inherit pkgs; }).home-manager
  ];

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

}