m
This commit is contained in:
parent
ccac697b26
commit
658a42659c
5 changed files with 33 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
#./zsh
|
./zsh
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
@ -9,5 +9,7 @@
|
||||||
|
|
||||||
nixd # nix lsp
|
nixd # nix lsp
|
||||||
alejandra # formatter
|
alejandra # formatter
|
||||||
|
|
||||||
|
oh-my-posh
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
16
home-manager/luna/categories/cli/zsh/default.nix
Normal file
16
home-manager/luna/categories/cli/zsh/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
5
home-manager/luna/categories/desktop/common/default.nix
Normal file
5
home-manager/luna/categories/desktop/common/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{...}: {
|
||||||
|
imports = [
|
||||||
|
./fonts.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
8
home-manager/luna/categories/desktop/common/fonts.nix
Normal file
8
home-manager/luna/categories/desktop/common/fonts.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
fonts = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
(nerd-fonts.override {fonts = ["JetBrains Mono"];})
|
||||||
|
jetbrains-mono
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -3,8 +3,6 @@
|
||||||
./common
|
./common
|
||||||
|
|
||||||
./categories/cli
|
./categories/cli
|
||||||
|
./categories/desktop/common
|
||||||
];
|
];
|
||||||
|
|
||||||
# The home.packages option allows you to install Nix packages into your
|
|
||||||
# environment.
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue