Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
960e957
Switch fastfetch logo to NixOS builtin
claude Apr 30, 2026
2492ff2
Add NixOS logo to fastfetch random rotation
claude Apr 30, 2026
771b184
Make Apple logo explicit in fastfetch rotation
claude Apr 30, 2026
105476b
Randomize fastfetch logo: clawd / apple / nixos (#50)
rin2yh Apr 30, 2026
171bd73
Set package ecosystem to 'nix' in dependabot config
rin2yh May 8, 2026
c7f0b9e
chore(deps): bump nixpkgs from `6368eda` to `68a8af9`
dependabot[bot] May 8, 2026
67389d1
chore(deps): bump homebrew-core from `7deee96` to `458fc34`
dependabot[bot] May 8, 2026
3b673d7
chore(deps): bump homebrew-cask from `4ae120b` to `2a6d45e`
dependabot[bot] May 8, 2026
50c0a51
Use 'default' as darwinConfiguration name for host-agnostic switch
claude Jun 4, 2026
a06c244
Use 'default' as darwinConfiguration name for host-agnostic switch (#59)
rin2yh Jun 4, 2026
b977a04
chore(deps): bump home-manager from `8ec5a71` to `4c5c1e8`
dependabot[bot] Jun 4, 2026
ab759c7
chore(deps): bump nix-darwin from `06648f4` to `56c666e`
dependabot[bot] Jun 4, 2026
33327c1
Migrate terminal from Ghostty to WezTerm
claude Jun 26, 2026
a636c9b
Add cmd+e keybind to rename the current WezTerm tab
claude Jun 26, 2026
8c947a0
Keep Ghostty alongside WezTerm instead of replacing it
claude Jun 26, 2026
5fbd3d3
Drop WezTerm keybinds that duplicate the defaults
claude Jun 27, 2026
0d59588
Hide WezTerm title bar and integrate window buttons
claude Jun 27, 2026
669c478
Skip WezTerm close/quit confirmation prompt
claude Jun 27, 2026
4daa383
Fix WezTerm transparency lost with integrated title-bar buttons
claude Jun 27, 2026
81425d8
Use RESIZE-only decorations so the window body stays transparent
claude Jun 27, 2026
eea0acc
Revert WezTerm title-bar experiments, restore transparent config
claude Jun 27, 2026
7c21dc7
Force WezTerm OpenGL front end so transparency works on Dock launch
claude Jun 27, 2026
6a0ea2e
Increase WezTerm transparency (opacity 0.85 -> 0.75)
claude Jun 27, 2026
fec8fa0
Increase WezTerm transparency further (opacity 0.75 -> 0.65)
claude Jun 27, 2026
8f0743b
Match Ghostty background color and opacity
claude Jun 27, 2026
de1f97c
Match Ghostty font: JetBrainsMono Nerd Font 13pt
claude Jun 27, 2026
d1d59a0
Install JetBrainsMono Nerd Font cask for WezTerm
claude Jun 27, 2026
d131e3a
Use WezTerm's bundled JetBrains Mono instead of installing a font
claude Jun 27, 2026
563df1b
Make WezTerm tab bar more Ghostty-like
claude Jun 27, 2026
2aae990
Add WezTerm alongside Ghostty (#61)
rin2yh Jun 27, 2026
021896b
chore(deps): bump nixpkgs from `6368eda` to `68a8af9` (#54)
rin2yh Jun 27, 2026
85ffd00
chore(deps): bump nix-darwin from `06648f4` to `56c666e` (#52)
rin2yh Jun 27, 2026
9c144c5
chore(deps): bump homebrew-core from `7deee96` to `458fc34` (#56)
rin2yh Jun 27, 2026
ce76af3
chore(deps): bump homebrew-cask from `4ae120b` to `2a6d45e` (#57)
rin2yh Jun 27, 2026
10d22b0
chore(deps): bump home-manager from `8ec5a71` to `4c5c1e8` (#58)
rin2yh Jun 27, 2026
445dfa5
ci: add flake build + nixfmt checks on PRs
claude Jun 27, 2026
355ac16
ci: pin actions to SHA, build on macos-26, drop workflow_dispatch
claude Jun 27, 2026
029ab3b
ci: add flake build + nixfmt checks on PRs (#62)
rin2yh Jun 27, 2026
60e71d3
chore(deps): bump nixpkgs to align with home-manager (26.11)
rin2yh Jun 27, 2026
345d110
chore(deps): bump nixpkgs to align with home-manager (26.11) (#64)
rin2yh Jun 27, 2026
b1b9d05
chore: mainの内容をfor-businessに取り込む
rin2yh Jun 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "nix" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
30 changes: 15 additions & 15 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions home/zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ fi

# fastfetch
if command -v fastfetch &>/dev/null; then
case $((RANDOM % 2)) in
case $((RANDOM % 3)) in
0) fastfetch ;;
1) fastfetch --logo auto ;;
1) fastfetch --logo apple ;;
2) fastfetch --logo nixos_small ;;
esac
fi

Expand Down