nixos-config/home-manager/modules/common-gui.nix
2024-12-23 14:16:50 -05:00

22 lines
350 B
Nix

{ pkgs, ... }:
{
imports = [
./alacritty.nix
./fuzzel.nix
./kitty.nix
];
fonts.fontconfig.enable = true;
# Bluetooth power alerts
services.poweralertd.enable = true;
home.packages = with pkgs; [
# fonts
nerd-fonts.monaspace
noto-fonts-cjk-sans
rPackages.fontawesome
ubuntu_font_family
yt-dlp
];
}