12 lines
220 B
Nix
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";
|
||
|
};
|
||
|
};
|
||
|
}
|