nix-config/home-manager/sajenim/features/desktop/default.nix
2025-04-30 12:18:32 +08:00

24 lines
438 B
Nix

{inputs, ...}: {
imports = [
./cava
./dunst
./mpv
./picom
./rofi
./thunar
./wezterm
];
home.file = {
# Install patched fonts
".local/share/fonts" = {
recursive = true;
source = "${inputs.self}/pkgs/patched-fonts";
};
# https://www.sainnhe.dev/post/patch-fonts-with-cursive-italic-styles/
# Configure the initialization of xinit
".xinitrc".source = ./xinitrc;
};
}