dotfiles.nix/home-manager/sajenim/features/desktop/default.nix
2024-09-20 20:24:55 +08:00

31 lines
453 B
Nix

{
inputs,
pkgs,
...
}: {
imports = [
./discord
./dunst
./email
./irc
./mpd
./picom
./rofi
./wezterm
];
home.packages = with pkgs; [
feh
xmobar # custom build using xmobar-config
xmonad # custom build using xmonad-config
];
home.file = {
".local/share/fonts" = {
recursive = true;
source = "${inputs.self}/pkgs/patched-fonts";
};
".xinitrc".source = ./xinitrc;
};
}