From 665643785565f17df8050ec6c7aeea9d079c7956 Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Sat, 3 Aug 2024 09:49:58 +0200 Subject: [PATCH] chore: cleanup --- home/modules/profiles/base.nix | 60 +++++++++++++--------------------- 1 file changed, 23 insertions(+), 37 deletions(-) diff --git a/home/modules/profiles/base.nix b/home/modules/profiles/base.nix index 105e68f..a1a8714 100644 --- a/home/modules/profiles/base.nix +++ b/home/modules/profiles/base.nix @@ -52,45 +52,36 @@ in { package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]); }; - dircolors = { - enable = true; - settings = { - OTHER_WRITABLE = "01;35"; # Make ntfs colors readable - }; - }; - - kitty = { - enable = true; - font = { - name = "FiraCode Nerd Font"; - size = 12; + dircolors = { + enable = true; + settings = { + OTHER_WRITABLE = "01;35"; # Make ntfs colors readable + }; }; - theme = "Chalk"; - }; - alacritty = { - enable = true; - settings = { - font = { - normal.family = "FiraCode Nerd Font"; - bold = { style = "Bold"; }; - size = 12; + alacritty = { + enable = true; + settings = { + font = { + normal.family = "FiraCode Nerd Font"; + bold = { style = "Bold"; }; + size = 12; + }; + # offset = { # Positioning + # x = -1; + # y = 0; + # }; }; - # offset = { # Positioning - # x = -1; - # y = 0; - # }; }; - }; - foot = { - enable = true; - settings = { - main = { - font = "FiraCode Nerd Font:size=12"; + foot = { + enable = true; + settings = { + main = { + font = "FiraCode Nerd Font:size=12"; + }; }; }; - }; starship = { enable = true; @@ -124,11 +115,6 @@ in { } ]; - # oh-my-zsh = { # Extra plugins for zsh - # enable = true; - # plugins = [ "git" ]; - # }; - initExtra = '' zstyle ':completion:*:*:*:*:*' menu select -- 2.48.1