mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
14 lines
297 B
Nix
14 lines
297 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.antigravity-cli = {
|
|
enable = true;
|
|
package = pkgs.writeShellScriptBin "antigravity-cli" "";
|
|
skills = ./skills/xlsx/SKILL.md;
|
|
};
|
|
|
|
test.asserts.assertions.expected = [
|
|
"`programs.antigravity-cli.skills` must be a directory when set to a path"
|
|
];
|
|
}
|