1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-28 18:47:44 +00:00

Update jujutsu and use git subprocess for push/pull/etc.

This commit is contained in:
RGBCube 2025-01-24 23:50:51 +03:00
parent ce1d611a62
commit a63a80698b
3 changed files with 86 additions and 2 deletions

81
flake.lock generated
View file

@ -121,6 +121,24 @@
"type": "github" "type": "github"
} }
}, },
"flake-utils_2": {
"inputs": {
"systems": "systems_3"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"git-hooks-nix": { "git-hooks-nix": {
"inputs": { "inputs": {
"flake-compat": [ "flake-compat": [
@ -172,12 +190,34 @@
"type": "github" "type": "github"
} }
}, },
"nil": { "jj": {
"inputs": { "inputs": {
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
"nixpkgs": "nixpkgs_2", "nixpkgs": [
"nixpkgs"
],
"rust-overlay": "rust-overlay" "rust-overlay": "rust-overlay"
}, },
"locked": {
"lastModified": 1738673966,
"narHash": "sha256-05ae98oBGt8JeI6PkNXbmuS64cftTbW6MpDkUYZ3rq0=",
"owner": "jj-vcs",
"repo": "jj",
"rev": "e995f7eec2c07010ff16e8f0f717771396c81292",
"type": "github"
},
"original": {
"owner": "jj-vcs",
"repo": "jj",
"type": "github"
}
},
"nil": {
"inputs": {
"flake-utils": "flake-utils_2",
"nixpkgs": "nixpkgs_2",
"rust-overlay": "rust-overlay_2"
},
"locked": { "locked": {
"lastModified": 1732053863, "lastModified": 1732053863,
"narHash": "sha256-DCIVdlb81Fct2uwzbtnawLBC/U03U2hqx8trqTJB7WA=", "narHash": "sha256-DCIVdlb81Fct2uwzbtnawLBC/U03U2hqx8trqTJB7WA=",
@ -336,6 +376,7 @@
"crash": "crash", "crash": "crash",
"fenix": "fenix", "fenix": "fenix",
"home-manager": "home-manager", "home-manager": "home-manager",
"jj": "jj",
"nil": "nil", "nil": "nil",
"nix": "nix", "nix": "nix",
"nix-darwin": "nix-darwin", "nix-darwin": "nix-darwin",
@ -361,6 +402,27 @@
} }
}, },
"rust-overlay": { "rust-overlay": {
"inputs": {
"nixpkgs": [
"jj",
"nixpkgs"
]
},
"locked": {
"lastModified": 1737685583,
"narHash": "sha256-p+NVABRpGi+pT+xxf9HcLcFVxG6L+vEEy+NwzB9T0f8=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "eb64cbcc8eee0fa87ebded92805280d2ec97415a",
"type": "github"
},
"original": {
"owner": "oxalica",
"repo": "rust-overlay",
"type": "github"
}
},
"rust-overlay_2": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
"nil", "nil",
@ -411,6 +473,21 @@
"type": "github" "type": "github"
} }
}, },
"systems_3": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"themes": { "themes": {
"locked": { "locked": {
"lastModified": 1715166503, "lastModified": 1715166503,

View file

@ -59,6 +59,12 @@
nix.url = "github:NixOS/nix"; nix.url = "github:NixOS/nix";
nil.url = "github:oxalica/nil"; nil.url = "github:oxalica/nil";
jj = {
url = "github:jj-vcs/jj";
inputs.nixpkgs.follows = "nixpkgs";
};
crash = { crash = {
url = "github:RGBCube/crash"; url = "github:RGBCube/crash";

View file

@ -29,6 +29,7 @@ in {
git.auto-local-bookmark = true; git.auto-local-bookmark = true;
git.push-bookmark-prefix = "change-"; git.push-bookmark-prefix = "change-";
git.subprocess = true;
signing.sign-all = true; signing.sign-all = true;
signing.backend = "ssh"; signing.backend = "ssh";