Skip to content

Commit 95d4729

Browse files
committed
fontbad
1 parent 9e2c86a commit 95d4729

6 files changed

Lines changed: 68 additions & 54 deletions

File tree

flake.lock

Lines changed: 30 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ rec {
2828
};
2929
roc = {
3030
url = "github:roc-lang/roc?shallow=1";
31-
inputs.nixpkgs.follows = "nixpkgs";
31+
#inputs.nixpkgs.follows = "nixpkgs"; # https://roc.zulipchat.com/#narrow/channel/231634-beginners/topic/roc.20nix.20flake/near/553273845
3232
# inputs.rust-overlay.follows = "rust-overlay";
3333
inputs.flake-utils.follows = "flake-utils";
3434
inputs.flake-compat.follows = "flake-compat";

home/common/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@
265265
enable = true;
266266
settings = {
267267
main = {
268-
font = "Sarasa Mono SC";
268+
#font = "Sarasa Mono SC";
269269
terminal = "foot";
270270
prompt = "->";
271271
};
@@ -787,7 +787,7 @@
787787
flameshot
788788
flatpak
789789
fnm
790-
fontconfig
790+
#fontconfig
791791
fontfinder
792792
freetype
793793
fselect

nixos/environment/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ in
116116
arduino
117117
arduino-cli
118118
arduino-core
119-
arduino-create-agent
119+
#arduino-create-agent # fish-completions as usual
120120
arduino-ide
121121
arduino-language-server
122122
arduino-mk
@@ -437,7 +437,7 @@ in
437437
gimp
438438
vlc
439439
wineWowPackages.stable
440-
fontconfig
440+
#fontconfig
441441
font-manager
442442

443443
# Printers and drivers

nixos/fonts/default.nix

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
{ pkgs, ... }:
22
{
3-
fonts = {
4-
packages =
5-
with pkgs;
6-
[
3+
#fonts = {
4+
# packages =
5+
# with pkgs;
6+
# [
77
# only desktops not servers?
8-
noto-fonts
9-
noto-fonts-cjk-sans
10-
noto-fonts-color-emoji
11-
font-awesome
8+
# noto-fonts
9+
# noto-fonts-cjk-sans
10+
# noto-fonts-color-emoji
11+
# font-awesome
1212
#source-han-sans-japanese
13-
source-han-sans
14-
source-han-serif
13+
# source-han-sans
14+
# source-han-serif
1515
#source-han-serif-japanese
16-
]
17-
++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts); # missing other fonts
18-
fontconfig = {
19-
# ligatures just give me ligatures what is this
20-
enable = true;
21-
defaultFonts = {
22-
monospace = [ "Meslo LG M Regular Nerd Font Complete Mono" ];
23-
serif = [
24-
"Noto Serif"
25-
"Source Han Serif"
26-
];
27-
sansSerif = [
28-
"Noto Sans"
29-
"Source Han Sans"
30-
];
31-
};
32-
};
33-
};
16+
# ]
17+
# ++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts); # missing other fonts
18+
#fontconfig = {
19+
# # ligatures just give me ligatures what is this
20+
# enable = true;
21+
# defaultFonts = {
22+
# monospace = [ "Meslo LG M Regular Nerd Font Complete Mono" ];
23+
# serif = [
24+
# "Noto Serif"
25+
# "Source Han Serif"
26+
# ];
27+
# sansSerif = [
28+
# "Noto Sans"
29+
# "Source Han Sans"
30+
# ];
31+
# };
32+
#};
33+
#};
3434
}

theme.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
fonts = {
3-
monospace = "Source Code Pro";
4-
serif = "Merriweather";
5-
sans-serif = "Roboto";
6-
};
2+
#fonts = {
3+
# monospace = "Source Code Pro";
4+
# serif = "Merriweather";
5+
# sans-serif = "Roboto";
6+
#};
77

88
colors = rec {
99
base00 = black-900;

0 commit comments

Comments
 (0)