tangled
alpha
login
or
join now
fantomitechno.dev
/
dotfiles
0
fork
atom
NixOS dotfiles
0
fork
atom
overview
issues
pulls
pipelines
✨ zsh config
fantomitechno.dev
2 months ago
bf689dc6
fb31ac5a
+9
1 changed file
expand all
collapse all
unified
split
home
zsh.nix
+9
home/zsh.nix
reviewed
···
22
22
eval "$(starship init zsh)"
23
23
eval "fastfetch"
24
24
'';
25
25
+
26
26
+
oh-my-zsh = {
27
27
+
enable = true;
28
28
+
plugins = [
29
29
+
"docker"
30
30
+
"docker-compose"
31
31
+
"history-substring-search"
32
32
+
];
33
33
+
};
25
34
};
26
35
}