1
0
Fork 0
myflake/flake.nix
2024-04-11 17:15:11 +02:00

20 lines
No EOL
453 B
Nix

{
description = "Standard packages";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
packages = import ./pkgs {
inherit (nixpkgs) lib;
inherit pkgs;
};
});
}