diff options
| author | Simen A. W. Olsen <cobraz@Simens-MacBook-Pro-4.local> | 2026-03-21 13:49:10 +0100 |
|---|---|---|
| committer | Simen A. W. Olsen <cobraz@Simens-MacBook-Pro-4.local> | 2026-03-21 13:49:10 +0100 |
| commit | 1fd92fcaf3aadea1e9509f859340f57100218c41 (patch) | |
| tree | db88f38eef0b04000cfd7affbbd5ab9175027f08 /modules/home/ghostty.nix | |
| parent | 95083ca2ac000adeaaaa9a14c8e64b015979d0b1 (diff) | |
| download | dotfiles-1fd92fcaf3aadea1e9509f859340f57100218c41.tar.gz dotfiles-1fd92fcaf3aadea1e9509f859340f57100218c41.zip | |
refactor: consolidate dotfiles into declarative Nix modules
- Remove nvim git submodule, use flake input instead
- Inline all shell configurations into Nix modules
- Remove legacy bootstrap.sh and macos/macos script
- Add NixOS system configuration support
- Update documentation with platform-specific setup
- Add claude-code to macOS Homebrew
- Remove stow-based dotfile management approach
Diffstat (limited to 'modules/home/ghostty.nix')
| -rw-r--r-- | modules/home/ghostty.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/home/ghostty.nix b/modules/home/ghostty.nix index e854c6e..1d42944 100644 --- a/modules/home/ghostty.nix +++ b/modules/home/ghostty.nix @@ -1,5 +1,14 @@ { ... }: { - home.file.".config/ghostty/config".source = ../../ghostty/.config/ghostty/config; + home.file.".config/ghostty/config".text = '' + theme = tokyonight-storm + + window-padding-x = 12 + window-padding-y = 12 + window-decoration = true + window-theme = "dark" + window-inherit-working-directory = true + window-inherit-font-size = true + ''; } |
