Jafner.net/dotfiles/nixos/desktop/addons/fonts.nix
Joey Hafner c128e9cd12 Big Update:
- Add Stylix config with Catppuccin Mocha.
- Add password manager interface via wofi, rbw, rofi-rbw, wl-clipboard, and dotool.
- Add protonmail-desktop.
- Replace Firefox and Chromium flatpaks with native apps.
- Remove Vesktop flatpak; using only native app.
- Remove VLC flatpak; using only native app.
- Add terminal font config to VSCode userSettings.
- Move "protonup-ng" Proton updater from "protonmail.nix" to its proper "gaming.nix" file.
- Add "fonts.nix" nixos config.
- Move gaming packages from nixos configuration.nix to gaming.nix.
- Remove Plasma6's Discover app.
- Add system-level ydotool program. Not yet used.
- Add backupFileExtension config for home-manager to mitigate collisions.
2024-12-06 18:21:14 -08:00

11 lines
226 B
Nix

{ pkgs, ... }: {
fonts.packages = with pkgs; [
font-awesome
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
powerline-symbols
(pkgs.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];})
];
}