18 lines
358 B
Nix
18 lines
358 B
Nix
{ config, pkgs, lib, ... }: {
|
|
home.packages = with pkgs; [ zsh any-nix-shell ];
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
plugins = [ "git" "sudo" "docker" "docker-compose" "adb" "systemd" ];
|
|
theme = "bira";
|
|
};
|
|
|
|
initExtra = ''
|
|
any-nix-shell zsh --info-right | source /dev/stdin
|
|
'';
|
|
};
|
|
}
|