Skip to content

Instantly share code, notes, and snippets.

@mausch
Created May 16, 2026 17:51
Show Gist options
  • Select an option

  • Save mausch/20f24835abd1e84519a8966fcb9d5cc6 to your computer and use it in GitHub Desktop.

Select an option

Save mausch/20f24835abd1e84519a8966fcb9d5cc6 to your computer and use it in GitHub Desktop.
browserOS
{
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";
};
};
}
@mausch
Copy link
Copy Markdown
Author

mausch commented May 16, 2026

https://github.com/browseros-ai/BrowserOS

nix run --refresh --no-write-lock-file git+https://gist.github.com/mausch/20f24835abd1e84519a8966fcb9d5cc6.git

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment