Skip to content

Commit

Permalink
chore(ngrok): install ngrok with nix
Browse files Browse the repository at this point in the history
  • Loading branch information
izumin5210 committed Apr 7, 2024
1 parent 2c1c6f8 commit d0cf9c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion .Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ cask "dash"
cask "deepl"
cask "dropbox"
cask "karabiner-elements"
cask "ngrok"
cask "obsidian"
cask "spotify"
cask "tableplus"
Expand Down
7 changes: 6 additions & 1 deletion home.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{ config, pkgs, ... }:
{ config, lib, pkgs, ... }:

{
nixpkgs.overlays = [
(import ./overlays/sheldon.nix)
];

nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"ngrok"
];
# Home Manager needs a bit of information about you and the paths it should
# manage.
# home.username = user.name;
Expand Down Expand Up @@ -75,6 +79,7 @@
pkgs.htop
pkgs.jq
pkgs.mas # only darwin
pkgs.ngrok
pkgs.ripgrep
pkgs.starship
pkgs.tig
Expand Down

0 comments on commit d0cf9c3

Please sign in to comment.