1
0
Fork 0
myflake/flake.nix

20 lines
453 B
Nix
Raw Normal View History

2024-04-11 17:15:11 +02:00
{
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;
};
});
}