feat: initial commit
This commit is contained in:
commit
428f2b7089
11 changed files with 608 additions and 0 deletions
25
modules/home-manager/zsh.nix
Normal file
25
modules/home-manager/zsh.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.eza.enable = true;
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
ll = "exa --icons -l";
|
||||
l = "exa --icons -la";
|
||||
ls = "exa --icons";
|
||||
update = "sudo nixos-rebuild switch";
|
||||
clear = "clear && fastfetch";
|
||||
};
|
||||
|
||||
history.size = 10000;
|
||||
autosuggestion.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [ "git" "docker" ];
|
||||
theme = "strug";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue