tijdelijk-te-laat/trivial/flake.nix

32 lines
629 B
Nix
Raw Normal View History

2025-04-18 13:51:02 +02:00
{
description = "Extremely basic flake";
2023-10-22 18:11:56 +02:00
inputs = {
2024-03-09 02:39:58 +01:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
2023-10-22 18:11:56 +02:00
};
2025-04-18 13:51:02 +02:00
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
packages = {
default = throw "put derivation information here";
};
2023-10-22 19:19:19 +02:00
2025-04-18 13:51:02 +02:00
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
(throw "put packages here")
];
};
2023-10-22 19:19:19 +02:00
2025-04-18 13:51:02 +02:00
}
);
2023-10-22 18:11:56 +02:00
}