12 lines
241 B
Nix
12 lines
241 B
Nix
desktop: _: {
|
|
programs = {
|
|
zsh = {
|
|
enable = true;
|
|
enableAutosuggestions = true;
|
|
enableCompletion = true;
|
|
enableSyntaxHighlighting = true;
|
|
enableVteIntegration = desktop;
|
|
autocd = true;
|
|
};
|
|
};
|
|
}
|