refactor: add ai config option

nixos
Moritz Böhme 2024-10-24 20:32:29 +02:00
parent e525d68112
commit 72e98aa61c
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
3 changed files with 43 additions and 30 deletions

View File

@ -14,6 +14,7 @@
];
my = {
ai.enable = true;
profiles = {
desktop.enable = true;
gaming.enable = true;

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

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

View File

@ -1,9 +1,12 @@
{ config, lib, pkgs, inputs, ... }:
{ config, lib, pkgs, ... }:
let
inherit (lib) mkEnableOption mkIf readFile;
inherit (lib) mkIf;
cfg = config.my.ai;
in
{
config = mkIf cfg.enable {
home-manager.users.moritz.programs.nixvim = {
extraPlugins = with pkgs.vimPlugins; [
nui-nvim
@ -26,12 +29,13 @@ in
}
})
'';
# plugins.copilot-lua.enable = true;
# plugins.copilot-lua.suggestion.enabled = false;
# plugins.copilot-lua.panel.enabled = false;
plugins.dressing.enable = true;
# performance.combinePlugins.standalonePlugins = [ "copilot.lua" ];
};
age.secrets."openai".file = ../../../../secrets/openai.age;
age.secrets."openai".owner = "moritz";
age.secrets = {
"openai".file = ../../../../secrets/openai.age;
"openai".owner = "moritz";
anthropic.file = ../../../../secrets/anthropic.age;
anthropic.owner = "moritz";
};
};
}