nix/home-manager/modules/shell/konsole.nix

23 lines
654 B
Nix
Raw Normal View History

{ pkgs, lib, ty-home-manager-options, ... }:
2024-12-02 03:57:34 -07:00
{
programs.konsole = lib.mkIf ty-home-manager-options.plasma.enable {
2024-12-02 03:57:34 -07:00
enable = true;
defaultProfile = "Primary";
profiles = {
Primary = {
name = "Primary";
command = "${pkgs.zsh}/bin/zsh";
font = {
name = "FiraMono Nerd Font Mono";
};
extraConfig = {
Appearance = {
UseFontBrailleChararacters = true;
};
Scrolling.HistoryMode = 1;
};
};
};
};
}