Created
May 16, 2026 17:51
-
-
Save mausch/20f24835abd1e84519a8966fcb9d5cc6 to your computer and use it in GitHub Desktop.
browserOS
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
| { | |
| description = "BrowserOS"; | |
| inputs.nixpkgs.url = "github:NixOS/nixpkgs/d233902339c02a9c334e7e593de68855ad26c4cb"; | |
| outputs = { self, nixpkgs }: | |
| let | |
| system = "x86_64-linux"; | |
| pkgs = import nixpkgs { inherit system; }; | |
| version = "0.44.0.1"; | |
| browseros = pkgs.appimageTools.wrapType2 { | |
| pname = "browseros"; | |
| inherit version; | |
| src = pkgs.fetchurl { | |
| url = "https://github.com/browseros-ai/BrowserOS/releases/download/v${version}/BrowserOS_v${version}_x64.AppImage"; | |
| hash = "sha256-ALnyVMnexYy48br9qbWaEbOZm7hJR9g39a9nYzbWXwo="; | |
| }; | |
| meta = with pkgs.lib; { | |
| description = "Privacy-first Chromium fork with built-in AI agents"; | |
| homepage = "https://github.com/browseros-ai/BrowserOS"; | |
| license = licenses.agpl3Only; | |
| mainProgram = "browseros"; | |
| platforms = [ system ]; | |
| }; | |
| }; | |
| in | |
| { | |
| packages.${system} = { | |
| default = browseros; | |
| browseros = browseros; | |
| }; | |
| apps.${system}.default = { | |
| type = "app"; | |
| program = "${browseros}/bin/browseros"; | |
| }; | |
| }; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/browseros-ai/BrowserOS