Initial commit
This commit is contained in:
commit
cfcc57a8bd
353 changed files with 18756 additions and 0 deletions
27
module/aspect/eyay/antigravity.nix
Normal file
27
module/aspect/eyay/antigravity.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
flake-file.inputs = {
|
||||
antigravity-nix = {
|
||||
url = "github:jacopone/antigravity-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
den.aspects = {
|
||||
antigravity = {
|
||||
nixos =
|
||||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
inputs.antigravity-nix.packages.${pkgs.system}.default
|
||||
];
|
||||
};
|
||||
homeManager =
|
||||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
inputs.antigravity-nix.packages.${pkgs.system}.default
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
46
module/aspect/eyay/claude-code.nix
Normal file
46
module/aspect/eyay/claude-code.nix
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
flake-file.inputs = {
|
||||
claude-code.url = "github:sadjow/claude-code-nix";
|
||||
};
|
||||
|
||||
den.aspects = {
|
||||
claude-code = {
|
||||
nixos =
|
||||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
nix.settings = {
|
||||
substituters = [
|
||||
"https://claude-code.cachix.org"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"claude-code.cachix.org-1:YeXf2aNu7UTX8Vwrze0za1WEDS+4DuI2kVeWEE4fsRk="
|
||||
];
|
||||
};
|
||||
nixpkgs.overlays = [
|
||||
inputs.claude-code.overlays.default
|
||||
];
|
||||
environment.systemPackages = [
|
||||
pkgs.claude-code
|
||||
];
|
||||
};
|
||||
homeManager =
|
||||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
nix.settings = {
|
||||
substituters = [
|
||||
"https://claude-code.cachix.org"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"claude-code.cachix.org-1:YeXf2aNu7UTX8Vwrze0za1WEDS+4DuI2kVeWEE4fsRk="
|
||||
];
|
||||
};
|
||||
nixpkgs.overlays = [
|
||||
inputs.claude-code.overlays.default
|
||||
];
|
||||
home.packages = [
|
||||
pkgs.claude-code
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
13
module/aspect/eyay/gemini-cli.nix
Normal file
13
module/aspect/eyay/gemini-cli.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
den.aspects = {
|
||||
gemini-cli = {
|
||||
nixos =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.local.gemini-cli
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
14
module/aspect/eyay/ollama.nix
Normal file
14
module/aspect/eyay/ollama.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
den.aspects = {
|
||||
ollama = {
|
||||
nixos =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
services.ollama = {
|
||||
enable = true;
|
||||
package = pkgs.latest.ollama;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
17
module/aspect/eyay/opencode.nix
Normal file
17
module/aspect/eyay/opencode.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
flake-file.inputs = {
|
||||
opencode-flake.url = "github:aodhanhayter/opencode-flake";
|
||||
};
|
||||
|
||||
den.aspects = {
|
||||
opencode = {
|
||||
nixos =
|
||||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
inputs.opencode-flake.packages.${pkgs.system}.default
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue