flake: update

This commit is contained in:
Felix Buehler 2026-04-23 23:42:26 +02:00
parent 21322eaaa7
commit 634afcffbf
4 changed files with 41 additions and 18 deletions

21
profiles/ai/default.nix Normal file
View file

@ -0,0 +1,21 @@
{
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
];
};
}