15 lines
283 B
Nix
15 lines
283 B
Nix
{ 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";
|
|
};
|
|
};
|
|
}
|