all repos — nixfiles @ 02801bdcd8a051e7621f7f03709a2dff37ef5557

System and user configuration, managed by nix and home-manager

shell.nix (view raw)

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}";
  '';

}