ALL HAIL OUR COMIC SANS OVERLORDS
This commit is contained in:
parent
a988dd1183
commit
9dad989f76
1 changed files with 155 additions and 113 deletions
|
@ -1,5 +1,13 @@
|
|||
{ user, ... }:
|
||||
{
|
||||
programs.plasma =
|
||||
let
|
||||
font = {
|
||||
family = "ComicCodeLigatures Nerd Font";
|
||||
pointSize = 10;
|
||||
};
|
||||
in
|
||||
{
|
||||
programs.plasma = {
|
||||
enable = true;
|
||||
workspace = {
|
||||
theme = "Breeze";
|
||||
|
@ -14,6 +22,17 @@
|
|||
theme = "Breeze";
|
||||
};
|
||||
};
|
||||
fonts = {
|
||||
general = font;
|
||||
fixedWidth = font;
|
||||
small = {
|
||||
family = "ComicCodeLigatures Nerd Font";
|
||||
pointSize = 8;
|
||||
};
|
||||
toolbar = font;
|
||||
menu = font;
|
||||
windowTitle = font;
|
||||
};
|
||||
hotkeys.commands = {
|
||||
"spectacle-screenshot" = {
|
||||
name = "Spectacle Screenshot";
|
||||
|
@ -74,13 +93,10 @@
|
|||
format = "offset";
|
||||
alwaysShow = true;
|
||||
};
|
||||
font = null;
|
||||
# {
|
||||
# family = "Noto Sans";
|
||||
# style = "Medium";
|
||||
# weight = 100;
|
||||
# size = 18;
|
||||
# };
|
||||
font = {
|
||||
family = "ComicCodeLigatures Nerd Font";
|
||||
size = 16;
|
||||
};
|
||||
};
|
||||
}
|
||||
#FIXME - I can't figure out what this id is supposed to be 😭
|
||||
|
@ -117,4 +133,30 @@
|
|||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue