diff --git a/modules/base/default.nix b/modules/base/default.nix index 44c23b8..9d8ff20 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -32,7 +32,7 @@ in orientation = "right"; show-recents = false; persistent-apps = [ - "/Applications/Helium.app" + "/Applications/Nix Apps/Helium.app" "/Applications/Ghostty.app" "/System/Applications/System Settings.app/" ]; diff --git a/modules/terminal/default.nix b/modules/terminal/default.nix index eea270e..6c256b3 100644 --- a/modules/terminal/default.nix +++ b/modules/terminal/default.nix @@ -27,18 +27,24 @@ }; flake.modules.homeManager.terminal = - { pkgs, config, lib, ... }: + { + pkgs, + config, + lib, + ... + }: { programs.ghostty = { enable = true; package = if pkgs.stdenv.isDarwin then null else pkgs.ghostty; enableFishIntegration = true; settings = { - font-size = 14; + font-size = if pkgs.stdenv.isDarwin then 18 else 14; font-family = "VictorMono Nerd Font"; font-style = "SemiBold"; background-opacity = 0.945; - window-decoration = "none"; + macos-titlebar-style = "transparent"; + window-decoration = if pkgs.stdenv.isDarwin then "auto" else "none"; window-padding-x = 8; window-padding-y = 8; window-padding-balance = true;