mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
25 lines
579 B
Nix
25 lines
579 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
# Dependency: plasma-manager
|
|
# Required by dolphin's terminal integration
|
|
programs.konsole = {
|
|
enable = true;
|
|
defaultProfile = "Default";
|
|
profiles = {
|
|
Default = {
|
|
command = lib.getExe config.my.desktop.preferredApps.interactiveShell;
|
|
colorScheme = "catppuccin-mocha";
|
|
font = {
|
|
name = "Maple Mono NF CN";
|
|
size = 12;
|
|
};
|
|
extraConfig = {
|
|
General.Environment = "TERM=xterm-256color,COLORTERM=truecolor,TERM_PROGRAM=konsole,";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|