92 lines
2.8 KiB
Nix
92 lines
2.8 KiB
Nix
{
|
|
description = "Flake basics described using the module system";
|
|
|
|
inputs = {
|
|
nixpkgs-lib.url = "github:nix-community/nixpkgs.lib";
|
|
};
|
|
|
|
outputs = inputs@{ nixpkgs-lib, ... }:
|
|
let
|
|
lib = import ./lib.nix {
|
|
inherit (nixpkgs-lib) lib;
|
|
# Extra info for version check message
|
|
revInfo =
|
|
if nixpkgs-lib?rev
|
|
then " (nixpkgs-lib.rev: ${nixpkgs-lib.rev})"
|
|
else "";
|
|
};
|
|
templates = {
|
|
default = {
|
|
path = ./template/default;
|
|
description = ''
|
|
A minimal flake using flake-parts.
|
|
'';
|
|
};
|
|
multi-module = {
|
|
path = ./template/multi-module;
|
|
description = ''
|
|
A minimal flake using flake-parts.
|
|
'';
|
|
};
|
|
unfree = {
|
|
path = ./template/unfree;
|
|
description = ''
|
|
A minimal flake using flake-parts importing nixpkgs with the unfree option.
|
|
'';
|
|
};
|
|
package = {
|
|
path = ./template/package;
|
|
description = ''
|
|
A flake with a simple package:
|
|
- Nixpkgs
|
|
- callPackage
|
|
- src with fileset
|
|
- a check with runCommand
|
|
'';
|
|
};
|
|
};
|
|
flakeModules = {
|
|
# Built-in modules
|
|
apps = ./modules/apps.nix;
|
|
checks = ./modules/checks.nix;
|
|
debug = ./modules/debug.nix;
|
|
devShells = ./modules/devShells.nix;
|
|
flake = ./modules/flake.nix;
|
|
formatter = ./modules/formatter.nix;
|
|
legacyPackages = ./modules/legacyPackages.nix;
|
|
moduleWithSystem = ./modules/moduleWithSystem.nix;
|
|
nixosConfigurations = ./modules/nixosConfigurations.nix;
|
|
nixosModules = ./modules/nixosModules.nix;
|
|
nixpkgs = ./modules/nixpkgs.nix;
|
|
overlays = ./modules/overlays.nix;
|
|
packages = ./modules/packages.nix;
|
|
perSystem = ./modules/perSystem.nix;
|
|
transposition = ./modules/transposition.nix;
|
|
withSystem = ./modules/withSystem.nix;
|
|
|
|
# Extras
|
|
easyOverlay = ./extras/easyOverlay.nix;
|
|
flakeModules = ./extras/flakeModules.nix;
|
|
modules = ./extras/modules.nix;
|
|
partitions = ./extras/partitions.nix;
|
|
bundlers = ./extras/bundlers.nix;
|
|
touchup = ./extras/touchup.nix;
|
|
};
|
|
in
|
|
lib.mkFlake { inherit inputs; } {
|
|
systems = [ ];
|
|
imports = [ flakeModules.partitions ];
|
|
partitionedAttrs.checks = "dev";
|
|
partitionedAttrs.devShells = "dev";
|
|
partitionedAttrs.herculesCI = "dev";
|
|
partitionedAttrs.tests = "dev";
|
|
partitions.dev.extraInputsFlake = ./dev;
|
|
partitions.dev.module = {
|
|
imports = [ ./dev/flake-module.nix ];
|
|
};
|
|
flake = {
|
|
inherit lib templates flakeModules;
|
|
};
|
|
};
|
|
|
|
}
|