tweaks for working on a new macbook

This commit is contained in:
Noah Masur 2024-12-17 08:21:36 -05:00
parent 6f22a3031b
commit fccee387b8
No known key found for this signature in database
4 changed files with 7 additions and 3 deletions

View File

@ -57,7 +57,7 @@
esac
selected=$(gh repo list "$organization" \
--limit 100 \
--limit 1000 \
--no-archived \
--json=name,description,isPrivate,updatedAt,primaryLanguage \
| jq -r '.[] | .name + "," + if .description == "" then "-" else .description |= gsub(","; " ") | .description end + "," + .updatedAt + "," + .primaryLanguage.name' \

View File

@ -34,7 +34,7 @@ in
osc # Clipboard over SSH
qrencode # Generate qr codes
rsync # Copy folders
ren # Rename files
# ren # Rename files
# rep # Replace text in files
ripgrep # grep
sd # sed

View File

@ -148,6 +148,9 @@
# Where to save screenshots
screencapture.location = "~/Downloads";
# Show seconds on the clock
menuExtraClock.ShowSeconds = true;
CustomUserPreferences = {
# Disable disk image verification
"com.apple.frameworks.diskimages" = {

View File

@ -11,11 +11,12 @@
users.users."${config.user}" = {
# macOS user
home = config.homePath;
uid = 502;
# shell = pkgs.fish; # Default shell
};
# This might fix the shell issues
# users.knownUsers = [ config.user ];
users.knownUsers = [ config.user ];
home-manager.users.${config.user} = {