17 lines
336 B
Nix
17 lines
336 B
Nix
{
|
|
description = "GarandOS flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
import-tree.url = "github:vic/import-tree";
|
|
};
|
|
|
|
outputs = inputs:
|
|
inputs.flake-parts.lib.mkFlake {
|
|
inherit inputs;
|
|
} (inputs.import-tree ./.);
|
|
}
|