add fonts module and use that instead
This commit is contained in:
parent
e752131a89
commit
794cf3b7f1
5 changed files with 58 additions and 6 deletions
|
@ -3,6 +3,7 @@
|
|||
./font.nix
|
||||
./firefox.nix
|
||||
./kitty.nix
|
||||
./gtk.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
|
|
@ -1,8 +1,13 @@
|
|||
{ imports, config, pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
noto-fonts
|
||||
noto-fonts-emoji
|
||||
];
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
fontProfiles = {
|
||||
enable = true;
|
||||
monospace = {
|
||||
family = "JetBrains Mono Nerd Font";
|
||||
package = pkgs.nerdfonts.override { fonts = ["JetBrainsMono"]; };
|
||||
};
|
||||
regular = {
|
||||
family = "Fira Sans";
|
||||
package = pkgs.fira;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
10
home/common/desktop/gtk.nix
Normal file
10
home/common/desktop/gtk.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ config, pkgs, inputs, lib, ... }: {
|
||||
gtk = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = config.fontProfiles.regular.family;
|
||||
package = config.fontProfiles.regular.package;
|
||||
size = 12;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
monitors = import ./monitors.nix;
|
||||
fonts = import ./fonts.nix;
|
||||
}
|
||||
|
|
35
modules/home-manager/fonts.nix
Normal file
35
modules/home-manager/fonts.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
mkFontOption = kind: {
|
||||
family = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = null;
|
||||
description = "Family name for ${kind} font profile";
|
||||
example = "Fira Code";
|
||||
};
|
||||
package = lib.mkOption {
|
||||
type = lib.types.package;
|
||||
default = null;
|
||||
description = "Package for ${kind} font profile";
|
||||
example = "pkgs.fira-code";
|
||||
};
|
||||
};
|
||||
cfg = config.fontProfiles;
|
||||
in {
|
||||
options.fontProfiles = {
|
||||
enable = lib.mkEnableOption "Whether to enable font profiles";
|
||||
monospace = mkFontOption "monospace";
|
||||
regular = mkFontOption "regular";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
fonts.fontconfig.enable = true;
|
||||
home.packages = [
|
||||
cfg.monospace.package
|
||||
cfg.regular.package
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue