Merge pull request #499 from Enzime/karabiner-elements

Karabiner-Elements
This commit is contained in:
Domen Kožar 2022-09-19 13:32:50 +01:00 committed by GitHub
commit 14a12e9ee7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 134 additions and 0 deletions

View file

@ -193,6 +193,21 @@ with lib;
'';
};
Crashed = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
If true, the the job will be restarted as long as it exited due to a signal which is typically
associated with a crash (SIGILL, SIGSEGV, etc.). If false, the job will be restarted in the
inverse condition.
'';
};
AfterInitialDemand = mkOption {
type = types.nullOr types.bool;
default = null;
};
};
}));
default = null;