dotfiles.nix/home-manager/sajenim/features/desktop/default.nix
2024-08-08 09:02:42 +08:00

31 lines
388 B
Nix

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