Files
nixos-config/system/gui/fonts.nix
Sravan Balaji 7db963f519 Gui Reorg and More Programs
- Gui config reorganization
- Enable picom for dwm
- Install some utilities like arandr, autorandr, and unclutter-xfixes
  for dwm
- Add nerdfonts for FiraCode
- Remove conditional imports list syntax
- Add audio tools like playerctl and pavucontrol
- Enable polkit and add GNOME polkit
- Add more media programs like freecad, audacity, ani-cli, and calibre
- Add flameshot
2024-03-28 20:16:07 -04:00

16 lines
215 B
Nix

{ config, lib, pkgs, ... }:
{
fonts.packages = with pkgs; [
corefonts
powerline
font-awesome
ubuntu_font_family
(nerdfonts.override {
fonts = [
"FiraCode"
];
})
];
}