Compare commits

...

2 Commits

Author SHA1 Message Date
Noah Masur
69dd348c92 fix: repos function fzf window too small 2024-01-25 14:57:29 -05:00
Noah Masur
d823b2a49e fix: homebrew programs not in path 2024-01-25 14:57:18 -05:00
2 changed files with 6 additions and 1 deletions

View File

@ -57,6 +57,7 @@
| fzf \
--header-lines=1 \
--layout=reverse \
--height=100% \
--bind "ctrl-o:execute:gh repo view -w ''${organization}/{1}" \
--bind "shift-up:preview-half-page-up" \
--bind "shift-down:preview-half-page-down" \

View File

@ -1,4 +1,4 @@
{ pkgs, lib, ... }: {
{ config, pkgs, lib, ... }: {
# Homebrew - Mac-specific packages that aren't in Nix
config = lib.mkIf pkgs.stdenv.isDarwin {
@ -13,6 +13,10 @@
fi
'';
# Add homebrew paths to CLI path
home-manager.users.${config.user}.home.sessionPath =
[ "/opt/homebrew/bin/" ];
homebrew = {
enable = true;
onActivation = {