39 lines
911 B
Nix
39 lines
911 B
Nix
{ inputs, options, config, lib, pkgs, ...}:
|
|
with lib;
|
|
let cfg = config.modules.shell.zsh;
|
|
in
|
|
{
|
|
options.modules.shell.zsh = {
|
|
enable = mkEnableOption false;
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
users.users.sako.shell = pkgs.zsh;
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
|
plugins = [
|
|
{
|
|
name = "zsh-nix-shell";
|
|
file = "nix-shell.plugin.zsh";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "chisui";
|
|
repo = "zsh-nix-shell";
|
|
rev = "v0.7.0";
|
|
sha256 = "0za4aiwwrlawnia4f29msk822rj9bgcygw6a8a6iikiwzjjz0g91";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
|
|
# for theme
|
|
fonts.fonts = with pkgs;[
|
|
jetbrains-mono
|
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
|
];
|
|
|
|
};
|
|
}
|