diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2025-01-02 23:40:43 -0600 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2025-01-02 23:40:43 -0600 |
commit | 379b35c5c996b5c3be50369a9b1072b18dd84080 (patch) | |
tree | 14c7af41d4f612551c4cbd7a0483359a2bfab1b3 /macos.local/.flake | |
parent | fed00142a46afc3e21090196c811fd1f2e0ea009 (diff) |
system changes
Diffstat (limited to 'macos.local/.flake')
-rw-r--r-- | macos.local/.flake/home/programs/core.nix.org | 1 | ||||
-rw-r--r-- | macos.local/.flake/home/programs/ghostty.nix.org | 10 |
2 files changed, 4 insertions, 7 deletions
diff --git a/macos.local/.flake/home/programs/core.nix.org b/macos.local/.flake/home/programs/core.nix.org index 96302e9..5aa8897 100644 --- a/macos.local/.flake/home/programs/core.nix.org +++ b/macos.local/.flake/home/programs/core.nix.org @@ -9,6 +9,7 @@ Import configurations for programs and install programs with no configuration. ./alacritty.nix ./emacs/core.nix ./fastfetch.nix + ./ghostty.nix ./git.nix ./neovim.nix ./ssh.nix diff --git a/macos.local/.flake/home/programs/ghostty.nix.org b/macos.local/.flake/home/programs/ghostty.nix.org index c7cfa85..20bffab 100644 --- a/macos.local/.flake/home/programs/ghostty.nix.org +++ b/macos.local/.flake/home/programs/ghostty.nix.org @@ -5,12 +5,8 @@ This terminal emulator seems over-hyped, but I'm trying it anyways. { config, pkgs, ... }: { - programs.ghostty = { - enable = true; - enableZshIntegration = true; - settings = { - font-family = "SauceCodePro Nerd Font"; - }; - }; + home.file."./.config/ghostty/config".text = '' + font-family = "SauceCodePro Nerd Font" + ''; } #+end_src |