all repos — nixfiles @ b5bcdf72cbc998550bf55af1842fe65f8c9ef0bf

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
let
  inherit (import ./sources.nix) nixPath sources;

  pkgs = import sources.nixpkgs { };
in
pkgs.mkShell
{

  name = "nixfiles-shell";

  buildInputs = with pkgs; [
    npins
    fish
    (pkgs.callPackage "${sources.agenix}/pkgs/agenix.nix" { })
    (import sources.home-manager { inherit pkgs; }).home-manager
  ];

  shellHook = ''
    export NIX_PATH="${builtins.concatStringsSep ":" nixPath}";
  '';
}