ALL HAIL OUR COMIC SANS OVERLORDS

This commit is contained in:
Seaswimmer 2024-12-19 11:42:31 -05:00
parent a988dd1183
commit 9dad989f76
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -1,5 +1,13 @@
{ user, ... }:
{ {
programs.plasma = { programs.plasma =
let
font = {
family = "ComicCodeLigatures Nerd Font";
pointSize = 10;
};
in
{
enable = true; enable = true;
workspace = { workspace = {
theme = "Breeze"; theme = "Breeze";
@ -14,6 +22,17 @@
theme = "Breeze"; theme = "Breeze";
}; };
}; };
fonts = {
general = font;
fixedWidth = font;
small = {
family = "ComicCodeLigatures Nerd Font";
pointSize = 8;
};
toolbar = font;
menu = font;
windowTitle = font;
};
hotkeys.commands = { hotkeys.commands = {
"spectacle-screenshot" = { "spectacle-screenshot" = {
name = "Spectacle Screenshot"; name = "Spectacle Screenshot";
@ -74,13 +93,10 @@
format = "offset"; format = "offset";
alwaysShow = true; alwaysShow = true;
}; };
font = null; font = {
# { family = "ComicCodeLigatures Nerd Font";
# family = "Noto Sans"; size = 16;
# style = "Medium"; };
# weight = 100;
# size = 18;
# };
}; };
} }
#FIXME - I can't figure out what this id is supposed to be 😭 #FIXME - I can't figure out what this id is supposed to be 😭
@ -117,4 +133,30 @@
kwinrc.Plugins.zoomEnabled = false; kwinrc.Plugins.zoomEnabled = false;
}; };
}; };
programs.konsole = {
enable = true;
defaultProfile = "xonsh";
profiles = {
"xonsh" = {
command = "/run/current-system/sw/bin/xonsh";
colorScheme = "Catppuccin-Mocha";
font = {
name = "ComicCodeLigatures Nerd Font";
size = 12;
};
extraConfig = {
"General" = {
"Directory" = "/home/${user}";
"Icon" = "nix-snowflake";
"StartInCurrentSessionDir" = false;
};
"Interaction Options" = {
"AllowEscapedLinks" = true;
"OpenLinksByDirectClickEnabled" = true;
"UnderlineFilesEnabled" = true;
};
};
};
};
};
} }