From 47d92838eef37fc5fcf7701daff9ed2b3c103ccf Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 27 Mar 2024 01:41:28 -0400 Subject: [PATCH] chore: Update to latest nixos-unstable release Updates hyprland to 0.37.1 among other things. --- flake.lock | 6 +++--- overlays/default.nix | 1 - overlays/hyprland.nix | 16 ---------------- 3 files changed, 3 insertions(+), 20 deletions(-) delete mode 100644 overlays/hyprland.nix diff --git a/flake.lock b/flake.lock index 49c8dcbb..3881c32f 100644 --- a/flake.lock +++ b/flake.lock @@ -184,11 +184,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1711163522, - "narHash": "sha256-YN/Ciidm+A0fmJPWlHBGvVkcarYWSC+s3NTPk/P+q3c=", + "lastModified": 1711333969, + "narHash": "sha256-5PiWGn10DQjMZee5NXzeA6ccsv60iLu+Xtw+mfvkUAs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "44d0940ea560dee511026a53f0e2e2cde489b4d4", + "rev": "57e6b3a9e4ebec5aa121188301f04a6b8c354c9b", "type": "github" }, "original": { diff --git a/overlays/default.nix b/overlays/default.nix index 479c4cd1..7eaf718a 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,7 +1,6 @@ { imports = [ ./base16-schemes.nix - ./hyprland.nix ./kitty.nix ./srb2.nix ./zola.nix diff --git a/overlays/hyprland.nix b/overlays/hyprland.nix deleted file mode 100644 index 4ef721c6..00000000 --- a/overlays/hyprland.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ - nixpkgs.overlays = [ - (final: prev: { - hyprland = prev.hyprland.overrideAttrs (oldAttrs: { - version = "0.36.0-unstable-2024-03-08"; - - src = prev.fetchFromGitHub { - owner = "hyprwm"; - repo = "hyprland"; - rev = "024d4ddc74c9bd7945c4075c972575f20bc5b9bd"; - hash = "sha256-0nQNygrQ9fbbieo6o8eGmadQ19U372OTOu1WUcmZbIs="; - }; - }); - }) - ]; -}