Link: https://github.com/nix-community/stylix/pull/2041
Link: https://github.com/nix-community/stylix/pull/1976#discussion_r2539186937
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
(cherry picked from commit 3a332459f4)
21 lines
399 B
Nix
21 lines
399 B
Nix
{ inputs, lib, ... }:
|
|
{
|
|
imports = [
|
|
inputs.flake-parts.flakeModules.partitions
|
|
./deprecation
|
|
./modules.nix
|
|
./options/ci.nix
|
|
./options/testbeds.nix
|
|
./packages.nix
|
|
./propagated-packages.nix
|
|
];
|
|
|
|
partitions.dev = {
|
|
module = ./dev;
|
|
extraInputsFlake = ./dev;
|
|
};
|
|
|
|
partitionedAttrs = lib.genAttrs [ "checks" "ci" "devShells" "formatter" ] (
|
|
_: "dev"
|
|
);
|
|
}
|