feat(home): Move zsh config to shell module
This commit is contained in:
parent
59e86c9580
commit
649eeae81b
2 changed files with 16 additions and 10 deletions
15
home/alex/programs/shell/default.nix
Normal file
15
home/alex/programs/shell/default.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.shellAliases = { suspend = "systemctl hibernate"; };
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableAutosuggestions = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [ "git" "fzf" "fd" "z" ];
|
||||
theme = "simple";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue