mirror of
https://github.com/nix-community/home-manager
synced 2024-11-30 06:59:45 +01:00
atuin: assert version >= 18.2.0 when daemon is enabled
This commit is contained in:
parent
4d7d797361
commit
0d09bde6ed
1 changed files with 13 additions and 5 deletions
|
@ -145,11 +145,19 @@ in {
|
||||||
|
|
||||||
(mkIf cfg.daemon.enable (mkMerge [
|
(mkIf cfg.daemon.enable (mkMerge [
|
||||||
{
|
{
|
||||||
assertions = [{
|
assertions = [
|
||||||
assertion = isLinux || isDarwin;
|
{
|
||||||
message =
|
assertion = versionAtLeast cfg.package.version "18.2.0";
|
||||||
"The atuin daemon can only be configured on either Linux or macOS.";
|
message = ''
|
||||||
}];
|
The atuin daemon requires at least version 18.2.0 or later.
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
{
|
||||||
|
assertion = isLinux || isDarwin;
|
||||||
|
message =
|
||||||
|
"The atuin daemon can only be configured on either Linux or macOS.";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
programs.atuin.settings = { daemon = { enabled = true; }; };
|
programs.atuin.settings = { daemon = { enabled = true; }; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue