25 lines
684 B
Nix
25 lines
684 B
Nix
{fonts, ...}: {
|
|
programs.konsole = {
|
|
enable = true;
|
|
defaultProfile = "One-Light";
|
|
customColorSchemes.onelight = ./onelight.colorscheme;
|
|
profiles.onelight = {
|
|
name = "One-Light";
|
|
colorScheme = "onelight";
|
|
font.name = fonts.monospace.name;
|
|
extraConfig = {
|
|
"Interaction Options" = {
|
|
"TextEditorCmd" = 6;
|
|
"TextEditorCmdCustom" = "emacsclient -c +LINE:COLUMN PATH";
|
|
"UnderlineFilesEnabled" = "true";
|
|
"OpenLinksByDirectClickEnabled" = "true";
|
|
};
|
|
"Terminal Features" = {
|
|
"BlinkingCursorEnabled" = "true";
|
|
"VerticalLine" = "false";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|