diff --git a/flake.nix b/flake.nix index b0aeb50..a84f2cb 100644 --- a/flake.nix +++ b/flake.nix @@ -25,7 +25,8 @@ hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; ironbar = { - url = "github:JakeStanger/ironbar?ref=3a1c60442382f970cdb7669814b6ef3594d9f048"; + url = "github:JakeStanger/ironbar"; + inputs.nixpkgs.follows = "nixpkgs"; }; zen-browser.url = "github:fufexan/zen-browser-flake"; diff --git a/modules/programs/gnome.nix b/modules/programs/gnome.nix index 2446a42..885eb2f 100644 --- a/modules/programs/gnome.nix +++ b/modules/programs/gnome.nix @@ -64,7 +64,7 @@ enabled-extensions = map (extension: extension.extensionUuid) defaultExtensions; }; "org/gnome/desktop/interface" = { - cursor-theme = "${config.mods.stylix.cursor.name}"; + cursor-theme = config.mods.stylix.cursor.name; cursor-size = config.mods.stylix.cursor.size; color-scheme = "prefer-dark"; }; diff --git a/modules/programs/gnomeServices.nix b/modules/programs/gnomeServices.nix index 0915e3a..8781c12 100644 --- a/modules/programs/gnomeServices.nix +++ b/modules/programs/gnomeServices.nix @@ -47,7 +47,7 @@ services.gnome-keyring.enable = true; dconf.settings = { "org/gnome/desktop/interface" = { - cursor-theme = "${config.mods.stylix.cursor.name}"; + cursor-theme = config.mods.stylix.cursor.name; cursor-size = config.mods.stylix.cursor.size; color-scheme = "prefer-dark"; };