This commit is contained in:
LunarAkai 2025-03-15 17:28:04 +01:00
commit 658a42659c
5 changed files with 33 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{pkgs, ...}: {
imports = [
#./zsh
./zsh
];
home.packages = with pkgs; [
@ -9,5 +9,7 @@
nixd # nix lsp
alejandra # formatter
oh-my-posh
];
}

View file

@ -0,0 +1,16 @@
{...}: {
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
};
history.size = 10000;
initContent = {
_type = "order";
content = ''eval "$(oh-my-posh init zsh)"'';
priority = 0;
};
};
}

View file

@ -0,0 +1,5 @@
{...}: {
imports = [
./fonts.nix
];
}

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
fonts = {
packages = with pkgs; [
(nerd-fonts.override {fonts = ["JetBrains Mono"];})
jetbrains-mono
];
};
}

View file

@ -3,8 +3,6 @@
./common
./categories/cli
./categories/desktop/common
];
# The home.packages option allows you to install Nix packages into your
# environment.
}