From 404868aa85fca77ef0dfd774222575127891aa3d Mon Sep 17 00:00:00 2001 From: aaron Date: Thu, 5 Mar 2026 20:52:19 +0100 Subject: [PATCH] refactor(shell): remove omz config from users file and add to home-manager --- modules/home-manager/ghostty.nix | 4 ++-- modules/home-manager/shell.nix | 4 ++-- modules/nixos/users.nix | 5 ----- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/modules/home-manager/ghostty.nix b/modules/home-manager/ghostty.nix index 65436bd..d71c719 100644 --- a/modules/home-manager/ghostty.nix +++ b/modules/home-manager/ghostty.nix @@ -7,9 +7,9 @@ clipboard-paste-protection = false; clipboard-read = "allow"; font-family = "0xProto Nerd Font Mono"; - font-size = 9; + font-size = 12; gtk-titlebar = false; - scrollback-limit = 10000; + scrollback-limit = 100000; shell-integration = "zsh"; theme = "noctalia"; # generated by noctalia-shell window-decoration = "auto"; diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix index fad41cf..1e141f3 100644 --- a/modules/home-manager/shell.nix +++ b/modules/home-manager/shell.nix @@ -7,8 +7,8 @@ syntaxHighlighting.enable = true; oh-my-zsh = { enable = true; - theme = "gentoo"; - #plugins = [ "git" "ssh-agent" ]; + theme = "agnoster"; + plugins = [ "git" "ssh-agent" "gpg-agent" ]; }; }; diff --git a/modules/nixos/users.nix b/modules/nixos/users.nix index 305806e..3cd98a3 100644 --- a/modules/nixos/users.nix +++ b/modules/nixos/users.nix @@ -14,10 +14,5 @@ enable = true; enableCompletion = true; autosuggestions.enable = true; - ohMyZsh = { - enable = true; - plugins = [ "git" "sudo" ]; - theme = "gentoo"; - }; }; }