diff options
| -rw-r--r-- | flake.lock | 17 | ||||
| -rw-r--r-- | flake.nix | 6 | ||||
| -rw-r--r-- | hosts/nara/configuration.nix | 2 |
3 files changed, 25 insertions, 0 deletions
@@ -84,6 +84,22 @@ "type": "github" } }, + "artginzburg-homebrew-tap": { + "flake": false, + "locked": { + "lastModified": 1675679148, + "narHash": "sha256-BRWWKPJZEFgF4zLcA2nwwVACY/2UuIsQjLCId5ogNoA=", + "owner": "artginzburg", + "repo": "homebrew-tap", + "rev": "f6f77166841101b215ac061b3aab9485c3ee4ab7", + "type": "github" + }, + "original": { + "owner": "artginzburg", + "repo": "homebrew-tap", + "type": "github" + } + }, "brew-src": { "flake": false, "locked": { @@ -1905,6 +1921,7 @@ "inputs": { "aagl": "aagl", "apple-fonts": "apple-fonts", + "artginzburg-homebrew-tap": "artginzburg-homebrew-tap", "cachix": "cachix", "chaotic": "chaotic", "cider": "cider", @@ -78,6 +78,12 @@ }; }; + + artginzburg-homebrew-tap = { + url = "github:artginzburg/homebrew-tap"; + flake = false; + }; + cachix = { url = "github:cachix/cachix"; diff --git a/hosts/nara/configuration.nix b/hosts/nara/configuration.nix index 24b8df4..8536726 100644 --- a/hosts/nara/configuration.nix +++ b/hosts/nara/configuration.nix @@ -16,6 +16,7 @@ "swiftlint" "gpg" "pinentry-mac" + "sudo-touchid" ]; casks = [ @@ -32,6 +33,7 @@ mutableTaps = false; taps = with inputs; { + "artginzburg/homebrew-tap" = artginzburg-homebrew-tap; "homebrew/homebrew-core" = homebrew-core; "homebrew/homebrew-cask" = homebrew-cask; "homebrew/homebrew-bundle" = homebrew-bundle; |