home-manager/gui: Use Monocraft font
This commit is contained in:
parent
af93a5c72e
commit
c411e5dec9
@ -4,6 +4,12 @@ let
|
||||
inherit (lib.my) mkBoolOpt';
|
||||
|
||||
cfg = config.my.gui;
|
||||
|
||||
font = {
|
||||
package = pkgs.monocraft;
|
||||
name = "Monocraft";
|
||||
size = 10;
|
||||
};
|
||||
in
|
||||
{
|
||||
options.my.gui = {
|
||||
@ -16,6 +22,7 @@ in
|
||||
{
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
font.package
|
||||
(nerdfonts.override {
|
||||
fonts = [ "DroidSansMono" "SourceCodePro" ];
|
||||
})
|
||||
@ -43,13 +50,13 @@ in
|
||||
alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
font.normal.family = "SauceCodePro Nerd Font Mono";
|
||||
font.normal.family = font.name;
|
||||
};
|
||||
};
|
||||
|
||||
kitty = {
|
||||
enable = true;
|
||||
font.name = "SauceCodePro Nerd Font Mono";
|
||||
inherit font;
|
||||
settings = {
|
||||
background_opacity = "0.8";
|
||||
tab_bar_edge = "top";
|
||||
@ -197,6 +204,7 @@ in
|
||||
name = "Numix";
|
||||
package = pkgs.numix-icon-theme;
|
||||
};
|
||||
font.name = font.name;
|
||||
};
|
||||
qt = {
|
||||
enable = true;
|
||||
@ -251,10 +259,10 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
waybar = import ./waybar.nix { inherit lib pkgs config; };
|
||||
waybar = import ./waybar.nix { inherit lib pkgs config font; };
|
||||
rofi = {
|
||||
enable = true;
|
||||
font = "SauceCodePro Nerd Font Mono 14";
|
||||
font = "${font.name} ${toString font.size}";
|
||||
plugins = with pkgs; [
|
||||
rofi-calc
|
||||
rofi-emoji
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ lib, pkgs, config, ... }:
|
||||
{ lib, pkgs, config, font, ... }:
|
||||
let
|
||||
inherit (lib) mkIf mkDefault mkMerge mkForce;
|
||||
|
||||
@ -155,8 +155,8 @@ in
|
||||
};
|
||||
style = ''
|
||||
* {
|
||||
font-size: 14px;
|
||||
font-family: SauceCodePro Nerd Font Mono;
|
||||
font-size: 12px;
|
||||
font-family: ${font.name};
|
||||
/*font-family: monospace;*/
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user