14 lines
328 B
Nix
14 lines
328 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.zsh.enable = true;
|
|
programs.zsh.ohMyZsh.enable = true;
|
|
programs.zsh.ohMyZsh.theme = "agnoster";
|
|
|
|
environment.shellAliases = {
|
|
os-update = "sudo nixos-rebuild switch --flake \".#$HOST\" --log-format internal-json -v |& nom --json";
|
|
};
|
|
|
|
fonts.packages = with pkgs; [
|
|
nerdfonts
|
|
];
|
|
}
|