chore(deps): lock file maintenance #559

Merged
renovate merged 2 commits from renovate/lock-file-maintenance into main 2025-07-05 10:27:21 +02:00
2 changed files with 13 additions and 13 deletions

14
flake.lock generated
View file

@ -303,11 +303,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1751272999,
"narHash": "sha256-iAmjAfHulye0CGJuiVWKQhVlKx0szRYJb7KrnmMsx58=",
"rev": "b43c397f6c213918d6cfe6e3550abfe79b5d1c51",
"lastModified": 1751652329,
"narHash": "sha256-QFeGjfEn4dxrsAKvDBBzJkdDzw360BC5lp9SUs3BNbY=",
"rev": "7a732ed41ca0dd64b4b71b563ab9805a80a7d693",
"type": "tarball",
"url": "https://releases.nixos.org/nixos/25.05/nixos-25.05.805252.b43c397f6c21/nixexprs.tar.xz?rev=b43c397f6c213918d6cfe6e3550abfe79b5d1c51"
"url": "https://releases.nixos.org/nixos/25.05/nixos-25.05.805766.7a732ed41ca0/nixexprs.tar.xz?rev=7a732ed41ca0dd64b4b71b563ab9805a80a7d693"
},
"original": {
"type": "tarball",
@ -410,11 +410,11 @@
"tinted-zed": "tinted-zed"
},
"locked": {
"lastModified": 1751404484,
"narHash": "sha256-9prjnLoa6NcqCItwzq69Twq/FOe0NwRB9OiqH3q0gOs=",
"lastModified": 1751658706,
"narHash": "sha256-jqRbWjB8aH2qzq6nMQpwkzVBR4o9lNxAHFmRgGwnJ94=",
"owner": "nix-community",
"repo": "stylix",
"rev": "4135c1bfbe121ed77b8c25a2141eace0ada9b0b8",
"rev": "5dd301b72207d4fd8d8b929abd88ba1c486d1744",
"type": "github"
},
"original": {

View file

@ -16,10 +16,6 @@ let
size = 48;
name = "Nordzy-cursors";
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme;
};
in
{
imports = [
@ -134,7 +130,6 @@ in
fuzzel = {
enable = true;
settings.main = lib.mkIf config.jhome.styling.enable {
icon-theme = "Papirus-Dark";
inherit (cfg) terminal;
layer = "overlay";
};
@ -231,6 +226,12 @@ in
# Set cursor style
inherit cursor;
targets.firefox.profileNames = [ config.home.username ];
iconTheme = {
enable = true;
light = "Papirus-Light";
dark = "Papirus-Dark";
package = pkgs.papirus-icon-theme;
};
};
home.pointerCursor = lib.mkIf config.jhome.styling.enable (
lib.mkDefault {
@ -241,7 +242,6 @@ in
# Set Gtk theme
gtk = lib.mkIf config.jhome.styling.enable {
enable = true;
inherit iconTheme;
gtk3.extraConfig.gtk-application-prefer-dark-theme = 1;
gtk4.extraConfig.gtk-application-prefer-dark-theme = 1;
};