nixos/profiles/ai/default.nix

22 lines
304 B
Nix
Raw Normal View History

2026-04-23 23:42:26 +02:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.profiles.ai;
in
{
options.my.profiles.ai = {
enable = lib.mkEnableOption "ai tools profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
unstable.crush
unstable.antigravity
];
};
}