23 lines
No EOL
577 B
Nix
23 lines
No EOL
577 B
Nix
{ 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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
} |