mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2026-04-27 07:48:44 +02:00
22 lines
304 B
Nix
22 lines
304 B
Nix
|
|
{
|
||
|
|
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
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|