No description
  • Nix 88.6%
  • Rust 6.6%
  • TypeScript 1.7%
  • Just 1.5%
  • Shell 1.3%
  • Other 0.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
gjz010's OpenCode agent 3c457221d3
chore: update harness to latest upstream
Refresh the harness flake input to upstream main revision 9edc6e1 while preserving all other dependency resolutions.
2026-09-20 17:33:14 +08:00
.secrets-embedded feat: embedded sops secrets; updates after that 2025-01-06 01:15:50 +08:00
.vscode Autocommit from gjz010-nixos-laptop-mechrevo on 2025年 03月 28日 星期五 08:55:36 CST 2025-08-09 23:18:05 +08:00
channel update 2026-09-06 22:40:07 +08:00
flakemodules fmt: nix fmt 2025-01-06 01:15:50 +08:00
machines feat: adopt gjz010/harness into the flake devShell 2026-09-20 09:34:28 +08:00
modules update 2026-09-06 22:40:07 +08:00
scratch Autocommit from nixos-desktop on 2025年 03月 10日 星期一 21:11:09 CST: nixos-laptop-mechrevo 2025-03-10 21:11:09 +08:00
scripts wip: before upgrade 2025-09-01 17:56:53 +08:00
secrets update 2026-02-14 17:24:45 +08:00
static fix: logo 2025-09-09 21:29:32 +08:00
.envrc devshell 2024-07-16 23:18:02 +08:00
.gitignore chore: ignore the .opencode directory 2026-09-20 09:43:23 +08:00
.sops.yaml update: yubikey-based keystone and iroh relay 2025-08-08 15:14:03 +08:00
default.nix fmt: nix fmt 2025-01-06 01:15:50 +08:00
deno.jsonc fmt 2025-01-06 01:15:50 +08:00
deno.lock fmt 2025-01-06 01:15:50 +08:00
flake.lock chore: update harness to latest upstream 2026-09-20 17:33:14 +08:00
flake.nix feat: adopt gjz010/harness into the flake devShell 2026-09-20 09:34:28 +08:00
justfile feat: adopt gjz010/harness into the flake devShell 2026-09-20 09:34:28 +08:00
README.md feat: README with socialify 2025-09-09 21:34:15 +08:00

nixos-config

Use packages

I've packaged a few software, free and proprietary.

# Run Icalingua++.
nix run github:gjz010/nix-channel#icalinguapp
# Run WeChat for UOS. ABSOLUTELY PROPRIETARY!
NIXPKGS_ALLOW_UNFREE=1 NIXPKGS_ALLOW_INSECURE=1 nix run github:gjz010/nix-channel#wechat-uos --impure
# Run Wemeet. ABSOLUTELY PROPRIETARY!
NIXPKGS_ALLOW_UNFREE=1 nix run github:gjz010/nix-channel#wemeetapp --impure

Use as Nixpkgs overlay

Flake users

{
    description = "Some Nix Flake configuration, for example, the one for home-manager.";
    inputs.gjz010={
        url = "github:gjz010/nixos-config";
        inputs.nixpkgs.follows = "nixpkgs";
    };
    outputs = { self, nixpkgs, gjz010 }: let
        system = "x86_64-linux";
        pkgs = import nixpkgs {inherit system; overlays = [ gjz010.overlays.default ]; };
        in {
            devShell.x86_64-linux = pkgs.mkShell {
                buildInputs = [ pkgs.gjz010.pkgs.icalinguapp ];
            };
        };
}

Non-Flake users

nix-channel --add https://github.com/gjz010/nix-channel/archive/refs/heads/main.tar.gz gjz010
nix-channel --update gjz010
nix-build -E "let pkgs = import <nixpkgs> {overlays = [(import <gjz010>)];}; in pkgs.gjz010.pkgs.icalinguapp"

Tar closure bundler

nix bundle --bundler github:gjz010/nix-channel#toTarball nixpkgs#hello

Flake templates

Usage: nix flake init -t github:gjz010/nix-channel#<TEMPLATE>.

Template Description
dream2nix-nodejs-rollup-typescript-bin Using dream2nix to package a binary built using rollup and Typescript.
nixos-with-flake A NixOS configuration using Flake and home-manager. See here