summary refs log tree commit diff stats
path: root/shell.nix
blob: b7d05d66e2042b16b0154f023e740a216d353620 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
let
  inherit (import ./sources.nix) nixPath sources;

  pkgs = import sources.nixpkgs { };
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="${builtins.concatStringsSep ":" nixPath}";
  '';
}