2024-09-01 12:58:42 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
fonts,
|
|
|
|
...
|
|
|
|
}:
|
2024-07-30 15:06:34 +01:00
|
|
|
{
|
2024-08-12 10:38:02 +01:00
|
|
|
home.packages = [ pkgs.yakuake ];
|
2024-07-10 08:27:17 +01:00
|
|
|
programs.konsole = {
|
|
|
|
enable = true;
|
|
|
|
defaultProfile = "One-Light";
|
|
|
|
customColorSchemes.onelight = ./onelight.colorscheme;
|
|
|
|
profiles.onelight = {
|
|
|
|
name = "One-Light";
|
|
|
|
colorScheme = "onelight";
|
2024-09-01 13:09:16 +01:00
|
|
|
command = "${config.programs.fish.package}/bin/fish";
|
2024-07-10 08:27:17 +01:00
|
|
|
font = {
|
|
|
|
name = fonts.monospace.name;
|
|
|
|
size = fonts.sizes.terminal;
|
|
|
|
};
|
|
|
|
extraConfig = {
|
|
|
|
"Interaction Options" = {
|
2024-07-24 08:25:37 +01:00
|
|
|
TextEditorCmd = 6;
|
|
|
|
TextEditorCmdCustom = "emacsclient -c +LINE:COLUMN PATH";
|
|
|
|
UnderlineFilesEnabled = true;
|
|
|
|
OpenLinksByDirectClickEnabled = true;
|
2024-07-10 08:27:17 +01:00
|
|
|
};
|
|
|
|
"Terminal Features" = {
|
2024-07-24 08:25:37 +01:00
|
|
|
BlinkingCursorEnabled = true;
|
|
|
|
VerticalLine = false;
|
2024-07-10 08:27:17 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-07-24 08:25:37 +01:00
|
|
|
extraConfig = {
|
|
|
|
MainWindow = {
|
|
|
|
MenuBar = "Disabled";
|
|
|
|
};
|
|
|
|
TabBar = {
|
|
|
|
ExpandTabWidth = true;
|
|
|
|
NewTabButton = true;
|
|
|
|
};
|
|
|
|
ThumbnailsSettings = {
|
|
|
|
ThumbnailAlt = true;
|
|
|
|
};
|
|
|
|
};
|
2024-07-10 08:27:17 +01:00
|
|
|
};
|
|
|
|
}
|