20 lines
341 B
Nix
20 lines
341 B
Nix
{ inputs, ... }:
|
|
{
|
|
flake.homeModules.shell = {pkgs, ...}: {
|
|
programs.eza = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
extraOptions = [
|
|
"-lgos type --no-time"
|
|
];
|
|
};
|
|
|
|
imports = with inputs.self.homeModules; [
|
|
zsh
|
|
files
|
|
docker
|
|
];
|
|
};
|
|
}
|