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