19 lines
386 B
Nix
19 lines
386 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.shellAliases = {
|
|
suspend = "systemctl hibernate";
|
|
nrs = "sudo nixos-rebuild switch --flake .";
|
|
nrb = "sudo nixos-rebuild build --flake .";
|
|
};
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
autosuggestion.enable = true;
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
plugins = [ "git" "fzf" "fd" "z" ];
|
|
theme = "simple";
|
|
};
|
|
};
|
|
}
|