cityseventeen: change font from anakron to kirsch

This commit is contained in:
Artur Manuel 2025-04-20 09:45:34 +01:00
commit 3249734cba
Signed by: amadaluzia
SSH key fingerprint: SHA256:ubvwT66gNUKSsgSzEb2UQnX8pzTq5N+r8eRVYGJJm4Q
11 changed files with 184 additions and 115 deletions

View file

@ -1,20 +1,25 @@
{ pkgs, ... }:
{
inputs,
system,
pkgs,
...
}:
{
alqueva.system.fonts = {
names = {
sansSerif = [ "Anakron" ];
monospace = [ "Anakron" ];
serif = [ "Anakron" ];
sansSerif = [ "kirsch" ];
monospace = [ "kirsch" ];
serif = [ "kirsch" ];
emoji = [ "Noto Fonts Color Emoji" ];
};
packages = {
sansSerif = [ pkgs.anakron ];
monospace = [ pkgs.anakron ];
serif = [ pkgs.anakron ];
sansSerif = [ inputs.kirsch.packages.${system}.kirsch ];
monospace = [ inputs.kirsch.packages.${system}.kirsch ];
serif = [ inputs.kirsch.packages.${system}.kirsch ];
emoji = [ pkgs.noto-fonts-color-emoji ];
extra = [
pkgs.noto-fonts
pkgs.nerd-fonts.symbols-only
pkgs.noto-fonts
];
};
enable = true;

View file

@ -1,6 +1,6 @@
[main]
pad=12x12
font=monospace:size=9
font=monospace:size=12
[colors]
foreground=e0def4

View file

@ -1,5 +1,5 @@
# output=<not set>
font=Monospace:size=12
font=Monospace:size=24
# dpi-aware=auto
# use-bold=no
prompt="󰴈 "

View file

@ -25,7 +25,7 @@ def main():
c.tabs.indicator.width = 0
c.tabs.title.format = "{audio}{relative_index} | {current_title}"
c.fonts.default_size = "9pt"
c.fonts.default_size = "12pt"
c.fonts.default_family = "sans-serif"
c.url.start_pages = "about:blank"

View file

@ -6,11 +6,6 @@
"modules-center": ["niri/workspaces"],
"modules-right": ["tray", "wireplumber", "clock"],
"reload_style_on_change": true,
"custom/nixos": {
"format": "󱄅",
"on-click": "rofi -show drun",
"tooltip": false,
},
"mpris": {
"format": "{player_icon} {dynamic}",
"format-paused": "{status_icon} <i>{dynamic}</i>",

View file

@ -18,7 +18,7 @@
* {
color: @base05;
font-family: monospace;
font-size: 9pt;
font-size: 12pt;
border-radius: 0px;
border: none;
}
@ -32,11 +32,6 @@ window#waybar {
padding: 0px 10px;
}
#custom-nixos {
color: @base0D;
font-size: 18px;
}
button {
padding: 4px 10px;
}

View file

@ -26,7 +26,6 @@
mpv
imv
amberol
element-desktop
nicotine-plus-libadwaita
nautilus
librewolf
@ -38,6 +37,7 @@
dino
polari
showtime
fractal
# vesktop
;
inherit (inputs.hetch.packages.${pkgs.system}) hetch;

View file

@ -11,14 +11,10 @@ in
nixosConfigurations = mkHosts {
cityseventeen = {
system = "x86_64-linux";
extraModules = [
inputs.disko.nixosModules.disko
];
};
micronix = {
system = "x86_64-linux";
extraModules = [
inputs.disko.nixosModules.disko
inputs.chaotic.nixosModules.default
];
};