This commit is contained in:
mjallen18
2025-06-05 11:19:40 -05:00
parent 42d1b6fb20
commit 4ccca75473
8 changed files with 287 additions and 36 deletions

View File

@@ -1,4 +1,4 @@
{ ... }:
{ pkgs, lib, ... }:
{
imports = [
./apps/actual

View File

@@ -6,6 +6,7 @@
config,
pkgs,
lib,
inputs,
...
}:
{
@@ -69,6 +70,8 @@
jq
llama-cpp
ninja
inputs.nas-nixai.packages.x86_64-linux.nixai
inputs.edit.packages.${pkgs.system}.edit
networkmanagerapplet
nmon
nut

View File

@@ -61,4 +61,15 @@ in
zsh.shellAliases = shellAliases;
};
# services.nixai = {
# enable = true;
# mcp = {
# enable = true;
# # Optional: custom socket path (uses `$HOME` expansion)
# socketPath = "$HOME/.local/share/nixai/mcp.sock";
# };
# # Optional: integrate with VS Code
# vscodeIntegration = true;
# };
}

View File

@@ -35,7 +35,7 @@ in
gnugrep
gnused
openssh
nix-build-mail
# nix-build-mail
];
script = ''
#!/usr/bin/env bash
@@ -122,7 +122,7 @@ in
git reset --hard
fi
'';
onSuccess = [ "git push" ];
# onSuccess = [ "git push" ];
# Send an email on failure
# onFailure = [ "nix-build-mail" ];
};
@@ -148,4 +148,4 @@ in
supportedFeatures = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
}
];
}
}

View File

@@ -132,6 +132,15 @@ in
environmentFile = config.sops.secrets."jallen-nas/authentik-env".path;
};
# nixai = {
# enable = true;
# mcp = {
# enable = true;
# # Optional: custom socket path
# socketPath = "/run/nixai/mcp.sock";
# };
# };
postgresql = {
enable = true;
package = pkgs.postgresql_16;