summary refs log tree commit diff stats
path: root/shell.nix
blob: f41153fc3e13e9c841e81b99d1a8d3b8d3a8f7b8 (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}";
  '';
}