19 lines
410 B
Nix
19 lines
410 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
inputs.small-nvim.homeManagerModules.small-nvim
|
|
../../terminal/shell/zsh.nix
|
|
../../terminal/programs
|
|
../../terminal/programs/lazygit.nix
|
|
../../develop
|
|
../../develop/small-misc.nix
|
|
];
|
|
|
|
xun.small-nvim = {
|
|
enable = true;
|
|
colorscheme = {
|
|
name = "dawnfox";
|
|
package = "EdenEast/nightfox.nvim";
|
|
};
|
|
wakatime.enable = false;
|
|
};
|
|
}
|