mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 08:50:32 +01:00
Shell stuff
This commit is contained in:
parent
b7d4f62551
commit
3c9e9e2e72
|
@ -29,6 +29,7 @@
|
|||
|
||||
colorschemes.catppuccin.enable = true;
|
||||
plugins = {
|
||||
lspkind.enable = true;
|
||||
persistence = {
|
||||
enable = true;
|
||||
};
|
||||
|
|
|
@ -7,7 +7,10 @@
|
|||
}: {
|
||||
programs = {
|
||||
zsh = {
|
||||
enable = if (config.os == "linux") then true else false;
|
||||
enable =
|
||||
if (config.os == "linux")
|
||||
then true
|
||||
else false;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = ["git"];
|
||||
|
|
Loading…
Reference in a new issue