ZSH setup

This commit is contained in:
CDaut 2024-02-29 23:31:15 +01:00
parent d21dfbc6fd
commit d1ed945935
Signed by: clara
GPG key ID: 223391B52FAD4463
3 changed files with 16 additions and 1 deletions

11
programm_configs/zsh.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "git" "battery" "docker" "docker-compose" "virtualenv"];
theme = "agnoster";
};
};
}