Common: enable eza

This commit is contained in:
Toast 2024-10-24 13:35:30 +02:00
parent 85dc75ced4
commit 74cadfd80f
2 changed files with 9 additions and 0 deletions

View file

@ -14,6 +14,7 @@
./direnv.nix
./atuin.nix
./fish.nix
./eza.nix
];
# Some programs dont have a programs.*.enable option, so I install their package here
environment.systemPackages = with pkgs; [

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
home-manager = {
users.toast.programs.eza = {
enable = true;
enableBashIntegration = true;
};
};
}