Open
Conversation
|
can you explain how it works.... |
Author
It will make it really easy to use openfang on Nixos systems. Literally the nix command above to launch the latest version in main. The package build will only be the start. I shall, when I have time for it, make a nixosModule so Nixos users can define a deterministic config. (Or maybe also home-manager module) You are probably not familiar with Nixos. But it's really quite awesome and useful. 😄 Example inputs.openfang.url = "github:tbaumann/openfang";in system configuration.nix # Now just package installation
environment.systemPackages = with pkgs; [ inputs.openfang.packages.${pkgs.stdenv.hostPlatform.system}.default ];
# In the future once I implemented it, declarative configuration
services.openfang = {
enable = true;
settings = {
network_enabled = false;
default_model = {
provider = "anthropic";
model = "claude-sonnet-4-20250514";
api_key_env = "ANTHROPIC_API_KEY";
};
};
}; |
|
understood |
DaniyalMusadiq1
approved these changes
Mar 4, 2026
egargale
pushed a commit
to egargale/openfang
that referenced
this pull request
Mar 5, 2026
Fixes RightNow-AI#168 AIEOS (AI Entity Object Specification) v1.1 is now fully supported. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Adding Nix support. Nixos modules may follow... Run directly with `nix run github:RightNow-AI/openfang` There are a bunch of flake outputs (based on cargo workspace) Focus on these: * openfang-cli (default) * openfang-desktop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adding Nix support. Nixos modules may follow...
Run directly with
nix run github:RightNow-AI/openfangThere are a bunch of flake outputs (based on cargo workspace) Focus on these: