From 4965bf7ebf076154f87877d738890da9d34541b5 Mon Sep 17 00:00:00 2001 From: ahwx Date: Thu, 5 Feb 2026 13:21:41 +0100 Subject: [PATCH] flake: adds `homebrew-core` and `homebrew-cask` --- flake.lock | 34 ++++++++++++++++++++++++++++++++++ flake.nix | 12 +++++++++++- 2 files changed, 45 insertions(+), 1 deletion(-) diff --git a/flake.lock b/flake.lock index bd89cb7..172f7c2 100644 --- a/flake.lock +++ b/flake.lock @@ -353,6 +353,38 @@ "type": "github" } }, + "homebrew-cask": { + "flake": false, + "locked": { + "lastModified": 1770245750, + "narHash": "sha256-hWGcDAhwloJK0MGvu9v1aIY3tUphAYMYkbc3whaCHTY=", + "owner": "homebrew", + "repo": "homebrew-cask", + "rev": "e4f2be7badec7ede6128614daaa7a0ca8155d183", + "type": "github" + }, + "original": { + "owner": "homebrew", + "repo": "homebrew-cask", + "type": "github" + } + }, + "homebrew-core": { + "flake": false, + "locked": { + "lastModified": 1770252071, + "narHash": "sha256-d3ci+aTB1k5HyCTIoX/JmrhKgbXZVjE/aggVl6xYdFE=", + "owner": "homebrew", + "repo": "homebrew-core", + "rev": "520f413dc530506af8e624f9cbbedbb3b5e01677", + "type": "github" + }, + "original": { + "owner": "homebrew", + "repo": "homebrew-core", + "type": "github" + } + }, "hypr-contrib": { "inputs": { "nixpkgs": "nixpkgs_3" @@ -1225,6 +1257,8 @@ "alejandra": "alejandra", "disko": "disko", "home-manager": "home-manager", + "homebrew-cask": "homebrew-cask", + "homebrew-core": "homebrew-core", "hypr-contrib": "hypr-contrib", "hyprland": "hyprland", "hyprland-plugins": "hyprland-plugins", diff --git a/flake.nix b/flake.nix index f996697..7838d46 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "liv's NixOS configuration"; + description = "liv's Nix configuration"; inputs = { alejandra.url = "github:kamadorueda/alejandra/3.0.0"; @@ -25,6 +25,16 @@ nix-darwin.url = "github:nix-darwin/nix-darwin/master"; nix-darwin.inputs.nixpkgs.follows = "nixpkgs"; nix-homebrew.url = "github:zhaofengli/nix-homebrew"; + + homebrew-core = { + url = "github:homebrew/homebrew-core"; + flake = false; + }; + + homebrew-cask = { + url = "github:homebrew/homebrew-cask"; + flake = false; + }; }; outputs =