nix-config/modules/shell.nix
2024-10-14 19:37:11 +02:00

14 lines
349 B
Nix

{ pkgs, ... }:
{
programs.zsh.enable = true;
programs.zsh.ohMyZsh.enable = true;
programs.zsh.ohMyZsh.theme = "agnoster";
environment.shellAliases = {
os-update = "unbuffer sudo nixos-rebuild switch --flake '/home/rhea/nix-config' --log-format internal-json -v |& nom --json";
};
fonts.packages = with pkgs; [
nerdfonts
];
}