Gitiles
Code Review
Sign In
git.clicks.codes
/
Infra
/
NixFiles
/
1e2187f58c354323da9f90ee00c7f1feeef6770e
/
.
/
host
/
shell.nix
blob: cc2e6d5fbaceaed66bd292a9eae45ac8b5348cee [
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
;
};
}