nixos/roles/home/zsh.nix

15 lines
277 B
Nix
Raw Permalink Normal View History

2021-06-25 12:55:23 +01:00
{ config, pkgs, lib, ... }: {
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "git" "sudo" "docker" "docker-compose" "adb" "systemd" ];
theme = "bira";
};
2022-04-15 12:20:11 +01:00
initExtra = ''
source ~/.profile
'';
2021-06-25 12:55:23 +01:00
};
}