24 lines
438 B
Nix
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;
|
|
};
|
|
}
|