pmos-work-a71/flake.nix

22 lines
379 B
Nix
Raw Normal View History

2024-12-11 17:01:49 +00:00
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = { flake-parts, ... } @ inputs:
flake-parts.lib.mkFlake
{ inherit inputs; }
{
imports = [
./dev
];
systems = [
"x86_64-linux"
];
};
}