2024-12-11 20:09:53 -07:00
|
|
|
{ pkgs, lib, ty-home-manager-options, ... }:
|
2024-12-02 03:57:34 -07:00
|
|
|
{
|
2024-12-11 20:09:53 -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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|