Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
2026-07-14 10:12:58 -03:00
4 changed files with 32 additions and 7 deletions
+11 -6
View File
@@ -1,8 +1,7 @@
{ { config
config, , pkgs
pkgs, , lib
lib, , ...
...
}: }:
let let
@@ -19,6 +18,7 @@ in
../../modules/home-manager/nvim ../../modules/home-manager/nvim
../../modules/home-manager/pi ../../modules/home-manager/pi
../../modules/home-manager/tmux ../../modules/home-manager/tmux
../../modules/home-manager/eza
]; ];
home = { home = {
@@ -41,6 +41,8 @@ in
oh-my-posh.enable = true; oh-my-posh.enable = true;
pi.enable = true; pi.enable = true;
nvim.enable = true; nvim.enable = true;
eza.enable = true;
bat.enable = true;
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
@@ -81,8 +83,11 @@ in
font-bold = "${mainFont}:size=${toString fontSize}"; font-bold = "${mainFont}:size=${toString fontSize}";
pad = "12x12"; pad = "12x12";
}; };
mouse = {
hide-when-typing = "yes";
};
scrollback.lines = 10000; scrollback.lines = 10000;
cursor.style = "beam"; cursor.style = "block";
colors-dark = { colors-dark = {
alpha = 1.0; alpha = 1.0;
background = "282828"; background = "282828";
+21
View File
@@ -0,0 +1,21 @@
{
lib,
config,
pkgs,
...
}:
{
options.custom = {
eza.enable = lib.mkEnableOption "enable eza - a modern replacement for ls";
};
config = lib.mkIf config.custom.eza.enable {
programs.eza = {
enable = true;
enableZshIntegration = true;
colors = "auto";
icons = "auto";
};
};
}
@@ -3,5 +3,4 @@ return {
"nvim-mini/mini.comment", "nvim-mini/mini.comment",
version = false, version = false,
}, },
{ "windwp/nvim-autopairs", event = "InsertEnter", opts = {} },
} }