dotfiles.nix/home-manager/sajenim/features/desktop/default.nix
2024-07-27 22:35:40 +08:00

29 lines
383 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;
};
}