433 current 2024-04-19 17:31:43 24.05.20240419.193037d 6.8.6-zen1 *

This commit is contained in:
zackartz 2024-04-19 17:31:45 -04:00
parent b352b191dc
commit 9f38900605
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
6 changed files with 58 additions and 34 deletions

View file

@ -1,11 +1,8 @@
{
pkgs,
inputs,
...
}: {
imports = [./fonts.nix];
{pkgs, ...}: {
imports = [../common/fonts.nix];
environment.etc."greetd/environments".text = ''
bspwm
Hyprland
'';

42
env/wayland/fonts.nix vendored
View file

@ -1,42 +0,0 @@
{pkgs, ...}: {
fonts = {
packages = with pkgs; [
material-icons
material-design-icons
roboto
work-sans
comic-neue
source-sans
twemoji-color-font
comfortaa
inter
lato
lexend
jost
dejavu_fonts
iosevka-bin
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
jetbrains-mono
(nerdfonts.override {fonts = ["Iosevka" "JetBrainsMono"];})
];
enableDefaultPackages = false;
# this fixes emoji stuff
fontconfig = {
defaultFonts = {
monospace = [
"Iosevka Term"
"Iosevka Term Nerd Font Complete Mono"
"Iosevka Nerd Font"
"Noto Color Emoji"
];
sansSerif = ["Inter" "Noto Color Emoji"];
serif = ["Noto Serif" "Noto Color Emoji"];
emoji = ["Noto Color Emoji"];
};
};
};
}