This repository has been archived on 2025-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/options/host/version.nix

21 lines
284 B
Nix

{
lib,
pkgs,
config,
...
}:
let
inherit (lib) mkOption;
inherit (lib.types) str;
cfg = config.host.version;
in
{
options.host.version = mkOption {
type = str;
default = "25.05";
description = "System version.";
};
config.system.stateVersion = cfg;
}