11.stylix/stylix/release.nix
stylix-automation[bot] 1acea29f68
flake: update all inputs (#2035)
Link: https://github.com/nix-community/stylix/pull/2035

Reviewed-by: 0xda157 <da157@voidq.com>
Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
Co-authored-by: 0xda157 <da157@voidq.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-12-03 21:59:32 +01:00

23 lines
690 B
Nix

{ lib, ... }:
{
options.stylix = {
release = lib.mkOption {
description = "The version of NixOS that Stylix is built to support";
default = "26.05";
internal = true;
readOnly = true;
};
enableReleaseChecks = lib.mkOption {
description = ''
Whether to check that the Stylix release matches the releases of
NixOS, Home Manager, and nix-darwin. Checks are only performed if the
component in question is used.
If this option is enabled and a mismatch is detected, a warning will be
printed when the user configuration is being built.
'';
type = lib.types.bool;
default = true;
};
};
}