My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/flake.nix

38 lines
804 B

5 years ago
{
epoch = 201909;
5 years ago
description = "A collection of packages for the Nix package manager";
outputs = { self }:
let
pkgs = import ./. { system = "x86_64-linux"; };
jobs = import ./pkgs/top-level/release.nix {
nixpkgs = self;
};
in
5 years ago
{
lib = (import ./lib) // {
nixosSystem = import ./nixos/lib/eval-config.nix;
};
5 years ago
checks.tarball = jobs.tarball;
5 years ago
builders = {
inherit (pkgs) stdenv fetchurl;
};
htmlDocs = {
nixpkgsManual = jobs.manual;
nixosManual = (import ./nixos/release-small.nix {
nixpkgs = self;
}).nixos.manual.x86_64-linux;
};
5 years ago
packages = {
inherit (pkgs) hello nix fuse nlohmann_json boost firefox;
5 years ago
};
legacyPackages = pkgs;
5 years ago
};
}