Link: https://github.com/nix-community/stylix/pull/1289 Reviewed-by: Daniel Thwaites <danth@danth.me> Co-authored-by: Matt Sturgeon <matt@sturgeon.me.uk> Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Tested-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
21 lines
352 B
Nix
21 lines
352 B
Nix
{ inputs, lib, ... }:
|
|
{
|
|
imports = [
|
|
inputs.flake-parts.flakeModules.partitions
|
|
./deprecation
|
|
./modules.nix
|
|
./packages.nix
|
|
./propagated-packages.nix
|
|
];
|
|
|
|
partitions.dev = {
|
|
module = ./dev;
|
|
extraInputsFlake = ./dev;
|
|
};
|
|
|
|
partitionedAttrs = lib.genAttrs [
|
|
"checks"
|
|
"devShells"
|
|
"formatter"
|
|
] (_: "dev");
|
|
}
|