Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Users/WickedWizard/Programs/Desktop/Theming/cursors.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
size = 32;
};

home.pointerCursor.enable = true;
# Should be done by stylix itself. danth/stylix#478
home.pointerCursor.hyprcursor.enable = true;

Expand Down
8 changes: 4 additions & 4 deletions _sources/generated.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
},
"nix-fast-build": {
"cargoLock": null,
"date": "2026-07-04",
"date": "2026-07-05",
"extract": null,
"name": "nix-fast-build",
"passthru": null,
Expand All @@ -118,12 +118,12 @@
"name": null,
"owner": "Mic92",
"repo": "nix-fast-build",
"rev": "03b5e3d352f1c1439f5f4f50ae62b6c32c87a625",
"sha256": "sha256-lG05oSx3yY03MHB5ER0BRJF6yPe8g/ntCKQ0o1OaTjE=",
"rev": "561be51b96d376c9c6c49a063cfdc83af81f4929",
"sha256": "sha256-9Fs2vjIdTaQQYPUsvU99X5f9cl8qkzT1dUgIC4A8A1M=",
"sparseCheckout": [],
"type": "github"
},
"version": "03b5e3d352f1c1439f5f4f50ae62b6c32c87a625"
"version": "561be51b96d376c9c6c49a063cfdc83af81f4929"
},
"obs_catppuccin": {
"cargoLock": null,
Expand Down
8 changes: 4 additions & 4 deletions _sources/generated.nix
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@
};
nix-fast-build = {
pname = "nix-fast-build";
version = "03b5e3d352f1c1439f5f4f50ae62b6c32c87a625";
version = "561be51b96d376c9c6c49a063cfdc83af81f4929";
src = fetchFromGitHub {
owner = "Mic92";
repo = "nix-fast-build";
rev = "03b5e3d352f1c1439f5f4f50ae62b6c32c87a625";
rev = "561be51b96d376c9c6c49a063cfdc83af81f4929";
fetchSubmodules = false;
sha256 = "sha256-lG05oSx3yY03MHB5ER0BRJF6yPe8g/ntCKQ0o1OaTjE=";
sha256 = "sha256-9Fs2vjIdTaQQYPUsvU99X5f9cl8qkzT1dUgIC4A8A1M=";
};
date = "2026-07-04";
date = "2026-07-05";
};
obs_catppuccin = {
pname = "obs_catppuccin";
Expand Down
60 changes: 30 additions & 30 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 24 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,30 @@
# Installation hooks need to setup manually in each devshell.
pre-commit.check.enable = true;
pre-commit.settings.hooks = {
commitizen.enable = true;
commitizen = {
enable = true;
# Fixes commitizen-tools/commitizen#1864
# Waiting for NixOS/nixpkgs#539725. Patch taken from there.
package = pkgs.commitizen.overrideAttrs (oldAttrs: rec {
version = "4.16.4";
src = pkgs.fetchFromGitHub {
owner = "commitizen-tools";
repo = "commitizen";
tag = "v${version}";
hash = "sha256-lVc1Kdy/IWRa8uoPZfOSSa379bDDknE3dpm0U7DVv0s=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "uv_build >= 0.9.17, <0.12" "uv-build"
'';
makeWrapperArgs = [
"--prefix"
"PATH"
":"
(lib.makeBinPath [ pkgs.gitMinimal ])
];
});
};
nixfmt-rfc-style = {
enable = true;
package = pkgs.nixfmt;
Expand Down
Loading