refactor: add ai config option

This commit is contained in:
Moritz Böhme 2024-10-24 20:32:29 +02:00
parent e525d68112
commit 72e98aa61c
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
3 changed files with 43 additions and 30 deletions

8
modules/config/ai.nix Normal file
View file

@ -0,0 +1,8 @@
{ lib
, ...
}:
with lib;
{
options.my.ai.enable = mkEnableOption "AI stuff";
}