nixos/roles/home/zsh.nix
2021-11-17 17:52:50 +01:00

12 lines
220 B
Nix

{ config, pkgs, lib, ... }: {
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "git" "sudo" "docker" "docker-compose" "adb" "systemd" ];
theme = "bira";
};
};
}