Gitiles
Code Review
Sign In
git.clicks.codes
/
Infra
/
NixFiles
/
f68685dc7059e31dcd58135137f601cbd881c30a
/
.
/
host
/
shell.nix
blob: 762da08fdfa6cc6c6a63d50cd28805f60e732624 [
file
] [
log
] [
blame
]
{
pkgs
,
...
}:
{
users
.
defaultUserShell
=
pkgs
.
zsh
;
programs
.
zsh
=
{
enable
=
true
;
ohMyZsh
=
[
"zsh-syntax-highlighting"
"git"
"git-auto-fetch"
"gh"
];
autosuggestions
=
{
enable
=
true
;
async
=
true
;
};
syntaxHighlighting
.
enable
=
true
;
};
}