diff --git a/hosts/phone/default.nix b/hosts/phone/default.nix index ba94964..386c6fa 100644 --- a/hosts/phone/default.nix +++ b/hosts/phone/default.nix @@ -1,6 +1,7 @@ {pkgs, ...}: { environment.packages = with pkgs; [ vim + alejandra hostname zsh fish @@ -39,24 +40,41 @@ experimental-features = nix-command flakes ''; - time.timeZone = "Europe/Berlin"; + time.timeZone = "Europe/Zurich"; home-manager.config = { home.stateVersion = "24.05"; imports = [ - ../../modules/apps/home/zsh - ../../modules/apps/home/git - ../../modules/apps/home/helix + ../../modules/programs/home/git + ../../modules/programs/home/helix + ../../modules/programs/home/zsh + ../../modules/programs/home/zoxide ]; }; user.shell = "${pkgs.zsh}/bin/zsh"; - terminal = { + font = "${pkgs.terminus_font_ttf}/share/fonts/truetype/TerminusTTF.ttf"; colors = { background = "#282828"; foreground = "#fbf1c7"; + color0 = "#282828"; + color1 = "#cc241d"; + color2 = "#98971a"; + color3 = "#d79921"; + color4 = "#458588"; + color5 = "#b16286"; + color6 = "#689d6a"; + color7 = "#a89984"; + color8 = "#928374"; + color9 = "#fb4934"; + color10 = "#b8bb26"; + color11 = "#fabd2f"; + color12 = "#83a598"; + color13 = "#d3869b"; + color14 = "#8ec07c"; + color15 = "#ebdbb2"; }; }; } diff --git a/modules/programs/home/zsh/default.nix b/modules/programs/home/zsh/default.nix index 0697e18..33bd185 100644 --- a/modules/programs/home/zsh/default.nix +++ b/modules/programs/home/zsh/default.nix @@ -1,7 +1,6 @@ {pkgs, ...}: { programs.zsh = { enable = true; - autosuggestion.enable = true; syntaxHighlighting.enable = true; enableCompletion = true; dotDir = ".config/zsh"; @@ -26,7 +25,7 @@ history.path = ".config/zsh/history"; oh-my-zsh = { enable = true; - plugins = ["git" "history-substring-search"]; + plugins = ["git" "history-substring-search" "autosuggestion"]; theme = "simple"; }; };