mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2026-04-27 07:48:44 +02:00
flake: update
This commit is contained in:
parent
21322eaaa7
commit
634afcffbf
4 changed files with 41 additions and 18 deletions
21
profiles/ai/default.nix
Normal file
21
profiles/ai/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue