28 lines
442 B
Nix
28 lines
442 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./alacritty.nix
|
|
./fuzzel.nix
|
|
./kitty.nix
|
|
./ghostty.nix
|
|
./obs.nix
|
|
./thunar.nix
|
|
./zen.nix
|
|
./xdg.nix
|
|
./mime.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
|
|
];
|
|
}
|