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

23 lines
646 B
Nix
Raw Normal View History

2024-12-15 22:43:55 -07:00
{ pkgs, lib, config, ... }:
2024-12-02 03:57:34 -07:00
{
2024-12-15 22:43:55 -07:00
programs.konsole = lib.mkIf config.meta.home-manager.desktop.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;
};
};
};
};
}