refactoring and minor updates

This commit is contained in:
Matt Nish-Lapidus 2025-03-22 10:57:26 -04:00
parent 83f072dac2
commit 14ff6a7a25
7 changed files with 43 additions and 27 deletions

View file

@ -1,4 +1,4 @@
{ nix-config, inputs, pkgs, ... }:
{ nix-config, lib, inputs, pkgs, ... }:
{
home.packages = with pkgs; [
@ -94,7 +94,6 @@
fish = {
enable = true;
shellAliases = {
"ls" = "eza";
"em" = "emacsclient -n -r";
"mkdir" = "mkdir -pv";
};
@ -132,15 +131,17 @@
wezterm = {
enable = true;
package = inputs.wezterm.packages.${pkgs.system}.default;
# extraConfig = lib.readFile ./dotfiles/dot_config/wezterm/wezterm.lua;
};
bat = {
enable = true;
};
eza = {
enable = true;
git = true;
enableFishIntegration = true;
git = true;
icons = "auto";
colors = "auto";
# extraOptions = [ "--header" ];
};
fd = {
enable = true;