nixos-config/home-manager/modules/common-gui.nix
2023-12-05 18:16:29 -05:00

20 lines
321 B
Nix

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