Skip to content

Commit f8da711

Browse files
Merge pull request #102 from Reputable2772/flake-update/2026-28
chore: update flake.lock & sources (2026-07-11)
2 parents 8e10605 + 9314201 commit f8da711

5 files changed

Lines changed: 63 additions & 39 deletions

File tree

Users/WickedWizard/Programs/Desktop/Theming/cursors.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
size = 32;
1010
};
1111

12+
home.pointerCursor.enable = true;
1213
# Should be done by stylix itself. danth/stylix#478
1314
home.pointerCursor.hyprcursor.enable = true;
1415

_sources/generated.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
},
107107
"nix-fast-build": {
108108
"cargoLock": null,
109-
"date": "2026-07-04",
109+
"date": "2026-07-05",
110110
"extract": null,
111111
"name": "nix-fast-build",
112112
"passthru": null,
@@ -118,12 +118,12 @@
118118
"name": null,
119119
"owner": "Mic92",
120120
"repo": "nix-fast-build",
121-
"rev": "03b5e3d352f1c1439f5f4f50ae62b6c32c87a625",
122-
"sha256": "sha256-lG05oSx3yY03MHB5ER0BRJF6yPe8g/ntCKQ0o1OaTjE=",
121+
"rev": "561be51b96d376c9c6c49a063cfdc83af81f4929",
122+
"sha256": "sha256-9Fs2vjIdTaQQYPUsvU99X5f9cl8qkzT1dUgIC4A8A1M=",
123123
"sparseCheckout": [],
124124
"type": "github"
125125
},
126-
"version": "03b5e3d352f1c1439f5f4f50ae62b6c32c87a625"
126+
"version": "561be51b96d376c9c6c49a063cfdc83af81f4929"
127127
},
128128
"obs_catppuccin": {
129129
"cargoLock": null,

_sources/generated.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@
6767
};
6868
nix-fast-build = {
6969
pname = "nix-fast-build";
70-
version = "03b5e3d352f1c1439f5f4f50ae62b6c32c87a625";
70+
version = "561be51b96d376c9c6c49a063cfdc83af81f4929";
7171
src = fetchFromGitHub {
7272
owner = "Mic92";
7373
repo = "nix-fast-build";
74-
rev = "03b5e3d352f1c1439f5f4f50ae62b6c32c87a625";
74+
rev = "561be51b96d376c9c6c49a063cfdc83af81f4929";
7575
fetchSubmodules = false;
76-
sha256 = "sha256-lG05oSx3yY03MHB5ER0BRJF6yPe8g/ntCKQ0o1OaTjE=";
76+
sha256 = "sha256-9Fs2vjIdTaQQYPUsvU99X5f9cl8qkzT1dUgIC4A8A1M=";
7777
};
78-
date = "2026-07-04";
78+
date = "2026-07-05";
7979
};
8080
obs_catppuccin = {
8181
pname = "obs_catppuccin";

flake.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,30 @@
153153
# Installation hooks need to setup manually in each devshell.
154154
pre-commit.check.enable = true;
155155
pre-commit.settings.hooks = {
156-
commitizen.enable = true;
156+
commitizen = {
157+
enable = true;
158+
# Fixes commitizen-tools/commitizen#1864
159+
# Waiting for NixOS/nixpkgs#539725. Patch taken from there.
160+
package = pkgs.commitizen.overrideAttrs (oldAttrs: rec {
161+
version = "4.16.4";
162+
src = pkgs.fetchFromGitHub {
163+
owner = "commitizen-tools";
164+
repo = "commitizen";
165+
tag = "v${version}";
166+
hash = "sha256-lVc1Kdy/IWRa8uoPZfOSSa379bDDknE3dpm0U7DVv0s=";
167+
};
168+
postPatch = ''
169+
substituteInPlace pyproject.toml \
170+
--replace-fail "uv_build >= 0.9.17, <0.12" "uv-build"
171+
'';
172+
makeWrapperArgs = [
173+
"--prefix"
174+
"PATH"
175+
":"
176+
(lib.makeBinPath [ pkgs.gitMinimal ])
177+
];
178+
});
179+
};
157180
nixfmt-rfc-style = {
158181
enable = true;
159182
package = pkgs.nixfmt;

0 commit comments

Comments
 (0)