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

23 lines
577 B
Nix
Raw Normal View History

2024-12-02 03:57:34 -07:00
{ pkgs, ... }:
{
programs.konsole = {
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;
};
};
};
};
}