refactor: add ai config option
parent
e525d68112
commit
72e98aa61c
|
@ -14,6 +14,7 @@
|
|||
];
|
||||
|
||||
my = {
|
||||
ai.enable = true;
|
||||
profiles = {
|
||||
desktop.enable = true;
|
||||
gaming.enable = true;
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
{ lib
|
||||
, ...
|
||||
}:
|
||||
|
||||
with lib;
|
||||
{
|
||||
options.my.ai.enable = mkEnableOption "AI stuff";
|
||||
}
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue