pkgs: add fonts

This commit is contained in:
Nydragon 2024-05-16 04:13:58 +09:00
parent d1b0c7fab6
commit c51585cfe7
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209

View file

@ -170,6 +170,7 @@ in
"audio" "audio"
"libvirtd" "libvirtd"
]; ];
shell = pkgs.fish;
}; };
services.greetd = { services.greetd = {
@ -186,21 +187,6 @@ in
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
services.flatpak.enable = true; services.flatpak.enable = true;
#programs.sway = {
#enable = true;
#wrapperFeatures.gtk = true;
#extraPackages = with pkgs; [
#waybar
#grim
#slurp
#wl-clipboard
#swaynotificationcenter
#swaybg
#swaylock
#swayidle
#];
#};
environment.sessionVariables = { environment.sessionVariables = {
XDG_CACHE_HOME = "$HOME/.cache"; XDG_CACHE_HOME = "$HOME/.cache";
XDG_CONFIG_HOME = "$HOME/.config"; XDG_CONFIG_HOME = "$HOME/.config";
@ -225,7 +211,6 @@ in
fish fish
nextcloud-client nextcloud-client
git git
keepassxc
firefox firefox
htop htop
alacritty alacritty
@ -246,9 +231,9 @@ in
fonts = with pkgs; { fonts = with pkgs; {
packages = [ packages = [
(nerdfonts.override { fonts = [ "Noto" ]; }) (nerdfonts.override { fonts = [ "Noto" ]; })
#noto-fonts jigmo
#noto-fonts-extra d2coding
#noto-fonts-cjk-sans last-resort
]; ];
}; };