From bea8010ff822cd06f809330dfaa36c13adb9ddef Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Wed, 2 Apr 2025 15:05:45 -0600 Subject: [PATCH] Adding zed and halloy config to home-manager --- home-gui.nix | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/home-gui.nix b/home-gui.nix index ea4c7aa..157d34a 100644 --- a/home-gui.nix +++ b/home-gui.nix @@ -30,4 +30,39 @@ in { # keybind = "global:cmd+grave_accent=toggle_quick_terminal"; }; }; + + programs.zed-editor = { + enable = true; + userSettings = { + vim_mode = true; + theme = { + mode = "system"; + # light = "Catppuccin Latte"; + # dark = "Catppuccin Frappé"; + }; + buffer_font_size = 16; + buffer_font_family = "Iosevka Nerd Font Mono"; + # "ui_font_family": "Iosevka Nerd Font"; + vim = { + enable_vim_sneak = true; + use_smartcase_find = true; + }; + }; + }; + + home.file.halloy = { + target = ".config/halloy/config.toml"; + text = '' +theme = "catppuccin-mocha" + +[servers.liberachat] +nickname = "sw4n" +server = "irc.libera.chat" +nick_password_file = "/Users/dustinswan/.liberachat-nickserv-password" +channels = ["#halloy", "#haskell", "#nixos"] + +[font] +size = 16 + ''; + }; }