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": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1751272999, "lastModified": 1751652329,
"narHash": "sha256-iAmjAfHulye0CGJuiVWKQhVlKx0szRYJb7KrnmMsx58=", "narHash": "sha256-QFeGjfEn4dxrsAKvDBBzJkdDzw360BC5lp9SUs3BNbY=",
"rev": "b43c397f6c213918d6cfe6e3550abfe79b5d1c51", "rev": "7a732ed41ca0dd64b4b71b563ab9805a80a7d693",
"type": "tarball", "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": { "original": {
"type": "tarball", "type": "tarball",
@ -410,11 +410,11 @@
"tinted-zed": "tinted-zed" "tinted-zed": "tinted-zed"
}, },
"locked": { "locked": {
"lastModified": 1751404484, "lastModified": 1751658706,
"narHash": "sha256-9prjnLoa6NcqCItwzq69Twq/FOe0NwRB9OiqH3q0gOs=", "narHash": "sha256-jqRbWjB8aH2qzq6nMQpwkzVBR4o9lNxAHFmRgGwnJ94=",
"owner": "nix-community", "owner": "nix-community",
"repo": "stylix", "repo": "stylix",
"rev": "4135c1bfbe121ed77b8c25a2141eace0ada9b0b8", "rev": "5dd301b72207d4fd8d8b929abd88ba1c486d1744",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

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