Evie Litherland-Smith
653ac9b6c7
Pin konsole and firefox to task launcher again Move Emacs package management out of NixOS, handle in Emacs config instead
40 lines
962 B
Nix
40 lines
962 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;
|
|
size = fonts.sizes.terminal;
|
|
};
|
|
extraConfig = {
|
|
"Interaction Options" = {
|
|
TextEditorCmd = 6;
|
|
TextEditorCmdCustom = "emacsclient -c +LINE:COLUMN PATH";
|
|
UnderlineFilesEnabled = true;
|
|
OpenLinksByDirectClickEnabled = true;
|
|
};
|
|
"Terminal Features" = {
|
|
BlinkingCursorEnabled = true;
|
|
VerticalLine = false;
|
|
};
|
|
};
|
|
};
|
|
extraConfig = {
|
|
MainWindow = {
|
|
MenuBar = "Disabled";
|
|
};
|
|
TabBar = {
|
|
ExpandTabWidth = true;
|
|
NewTabButton = true;
|
|
};
|
|
ThumbnailsSettings = {
|
|
ThumbnailAlt = true;
|
|
};
|
|
};
|
|
};
|
|
}
|